@@ -42,13 +42,21 @@ pip3 install -e .
4242# pip list
4343pip2 list > ./Temp/txt/python2_pip2_list.txt
4444pip3 list > ./Temp/txt/python3_pip3_list.txt
45- python2 -m pip2 list > ./Temp/txt/2021_python2_pip2_list.txt
46- python3 -m pip3 list > ./Temp/txt/2021_python3_pip3_list.txt
45+ 46+ pip2 list > ./Temp/txt/2021_python2_pip2_list.txt
47+ pip3 list > ./Temp/txt/2021_python3_pip3_list.txt
48+ 49+ python2 -m pip list > ./Temp/txt/2021_python2_pip2_list.txt
50+ python3 -m pip list > ./Temp/txt/2021_python3_pip3_list.txt
4751# pip freeze
4852pip2 freeze > ./Temp/txt/python2_pip2_freeze.txt
4953pip3 freeze > ./Temp/txt/python3_pip3_freeze.txt
50- python2 -m pip2 freeze > ./Temp/txt/2021_python2_pip2_freeze.txt
51- python3 -m pip3 freeze > ./Temp/txt/2021_python3_pip3_freeze.txt
54+ 55+ pip2 freeze > ./Temp/txt/2021_python2_pip2_freeze.txt
56+ pip3 freeze > ./Temp/txt/2021_python3_pip3_freeze.txt
57+ 58+ python2 -m pip freeze > ./Temp/txt/2021_python2_pip2_freeze.txt
59+ python3 -m pip freeze > ./Temp/txt/2021_python3_pip3_freeze.txt
5260```
5361
5462### 2.3. pip install
@@ -60,15 +68,15 @@ python3 -m pip3 freeze > ./Temp/txt/2021_python3_pip3_freeze.txt
6068pip2 install -r ./requirements.txt
6169pip3 install -r ./requirements.txt
6270
63- python2 -m pip2 install -r ./requirements.txt
64- python3 -m pip3 install -r ./requirements.txt
71+ python2 -m pip install -r ./requirements.txt
72+ python3 -m pip install -r ./requirements.txt
6573
6674# the base chain component requirements
6775pip2 install -r ./Temp/archives/material/requirements.txt
6876pip3 install -r ./Temp/archives/material/requirements.txt
6977
70- python2 -m pip2 install -r ./Temp/archives/material/requirements.txt
71- python3 -m pip3 install -r ./Temp/archives/material/requirements.txt
78+ python2 -m pip install -r ./Temp/archives/material/requirements.txt
79+ python3 -m pip install -r ./Temp/archives/material/requirements.txt
7280```
7381
7482#### 2.3.2. pip install xxx
0 commit comments