Skip to content

Commit c90e4d9

Browse files
committed
the python bash upgrade
1 parent b5d7ced commit c90e4d9

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

Temp/bash/python_bash_command.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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 .
1414
pip3 install -e .
1515
```
1616

17-
### 1.2. pip list
17+
### 1.2. pip list or freeze
1818

1919
```bash
20+
# pip list
2021
pip2 list > ./Temp/txt/pip2_list.txt
2122
pip3 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
2326
pip2 freeze > ./Temp/txt/pip2_freeze.txt
2427
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
2530
```
2631

2732
## 二. flake8

0 commit comments

Comments
 (0)