We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5d7ced commit c90e4d9Copy full SHA for c90e4d9
1 file changed
Temp/bash/python_bash_command.md
@@ -2,7 +2,7 @@
2
3
- [一. pip](#一-pip)
4
- [1.1. pip --editable](#11-pip---editable)
5
- - [1.2. pip list](#12-pip-list)
+ - [1.2. pip list or freeze](#12-pip-list-or-freeze)
6
- [二. flake8](#二-flake8)
7
8
## 一. pip
@@ -14,14 +14,19 @@ pip2 install -e .
14
pip3 install -e .
15
```
16
17
-### 1.2. pip list
+### 1.2. pip list or freeze
18
19
```bash
20
+# pip list
21
pip2 list > ./Temp/txt/pip2_list.txt
22
pip3 list > ./Temp/txt/pip3_list.txt
-
23
+pip2 list > ./Temp/txt/2021_pip2_list.txt
24
+pip3 list > ./Temp/txt/2021_pip3_list.txt
25
+# pip freeze
26
pip2 freeze > ./Temp/txt/pip2_freeze.txt
27
pip3 freeze > ./Temp/txt/pip3_freeze.txt
28
+pip2 freeze > ./Temp/txt/2021_pip2_freeze.txt
29
+pip3 freeze > ./Temp/txt/2021_pip3_freeze.txt
30
31
32
## 二. flake8
0 commit comments