File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change 22
33- [ 一. pip] ( #一-pip )
44 - [ 1.1. pip --editable] ( #11-pip---editable )
5- - [ 1.2. pip list] ( #12-pip-list )
5+ - [ 1.2. pip list or freeze ] ( #12-pip-list-or-freeze )
66- [ 二. flake8] ( #二-flake8 )
77
88## 一. pip
@@ -14,14 +14,19 @@ pip2 install -e .
1414pip3 install -e .
1515```
1616
17- ### 1.2. pip list
17+ ### 1.2. pip list or freeze
1818
1919``` bash
20+ # pip list
2021pip2 list > ./Temp/txt/pip2_list.txt
2122pip3 list > ./Temp/txt/pip3_list.txt
22-
23+ pip2 list > ./Temp/txt/2021_pip2_list.txt
24+ pip3 list > ./Temp/txt/2021_pip3_list.txt
25+ # pip freeze
2326pip2 freeze > ./Temp/txt/pip2_freeze.txt
2427pip3 freeze > ./Temp/txt/pip3_freeze.txt
28+ pip2 freeze > ./Temp/txt/2021_pip2_freeze.txt
29+ pip3 freeze > ./Temp/txt/2021_pip3_freeze.txt
2530```
2631
2732## 二. flake8
You can’t perform that action at this time.
0 commit comments