Skip to content

Commit aaa0354

Browse files
author
zhenwei-li
committed
the README upgrade
1 parent aa68292 commit aaa0354

1 file changed

Lines changed: 21 additions & 6 deletions

File tree

README.md

Lines changed: 21 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,10 @@
2222
- [4.1 python version](#41-python-version)
2323
- [4.2 pip setuptools wheel version](#42-pip-setuptools-wheel-version)
2424
- [4.2.1 pip freeze list](#421-pip-freeze-list)
25-
- [4.2.2 setuptools](#422-setuptools)
26-
- [4.2.2.1 setup.cfg](#4221-setupcfg)
27-
- [4.2.2.2 setup.py](#4222-setuppy)
25+
- [4.2.2 pip cache](#422-pip-cache)
26+
- [4.2.3 setuptools](#423-setuptools)
27+
- [4.2.3.1 setup.cfg](#4231-setupcfg)
28+
- [4.2.3.2 setup.py](#4232-setuppy)
2829
- [4.3 virtualenv version](#43-virtualenv-version)
2930
- [4.4 tox tox-travis version](#44-tox-tox-travis-version)
3031
- [4.5 twine version](#45-twine-version)
@@ -213,9 +214,23 @@ python2 -m pip freeze > ./Temp/python_pip_freeze.txt
213214
python2 -m pip list > ./Temp/python_pip_list.txt
214215
```
215216

216-
#### 4.2.2 setuptools
217+
#### 4.2.2 pip cache
217218

218-
##### 4.2.2.1 setup.cfg
219+
```bash
220+
# pip cache list
221+
python2 -m pip cache list > ./out/dist/pip_cache_list.txt
222+
python3 -m pip cache list > ./out/dist/pip_cache_list.txt
223+
# pip no cache install
224+
python2 -m pip --no-cache-dir install com.dvsnier.*
225+
python3 -m pip --no-cache-dir install com.dvsnier.*
226+
# pip remove cache package with whl
227+
python2 -m pip cache remove com.dvsnier.*
228+
python3 -m pip cache remove com.dvsnier.*
229+
```
230+
231+
#### 4.2.3 setuptools
232+
233+
##### 4.2.3.1 setup.cfg
219234

220235
```bash
221236
# python2 build
@@ -231,7 +246,7 @@ python3 -m build
231246
python3 -m build > ./out/dist/build.txt
232247
```
233248

234-
##### 4.2.2.2 setup.py
249+
##### 4.2.3.2 setup.py
235250

236251
```bash
237252
# setup sdist

0 commit comments

Comments
 (0)