File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
2932pip3 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
You can’t perform that action at this time.
0 commit comments