Skip to content

Commit 5d556ef

Browse files
author
zhenwei-li
committed
the python command upgrade
1 parent 6efce08 commit 5d556ef

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

Temp/bash/python_command.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
- [一. pip](#一-pip)
44
- [1.1. pip --editable](#11-pip---editable)
55
- [1.2. pip list or freeze](#12-pip-list-or-freeze)
6+
- [1.3. pip install](#13-pip-install)
7+
- [1.3.1. pip install -r requirements.txt](#131-pip-install--r-requirementstxt)
8+
- [1.3.2. pip install xxx](#132-pip-install-xxx)
69
- [二. flake8](#二-flake8)
710

811
## 一. pip
@@ -29,6 +32,27 @@ pip2 freeze > ./Temp/txt/2021_pip2_freeze.txt
2932
pip3 freeze > ./Temp/txt/2021_pip3_freeze.txt
3033
```
3134

35+
### 1.3. pip install
36+
37+
#### 1.3.1. pip install -r requirements.txt
38+
39+
```bash
40+
# the base component requirements
41+
pip2 install -r ./requirements.txt
42+
pip3 install -r ./requirements.txt
43+
44+
# the base chain component requirements
45+
pip2 install -r ./Temp/archives/material/requirements.txt
46+
pip3 install -r ./Temp/archives/material/requirements.txt
47+
```
48+
49+
#### 1.3.2. pip install xxx
50+
51+
```bash
52+
pip2 install xxx
53+
pip3 install xxx
54+
```
55+
3256
## 二. flake8
3357

3458
```bash

0 commit comments

Comments
 (0)