Examples
2018.4.23 pip使用

pip打包

python setup.py check  检查setup.py是不是正确,如果正确就只输出running check

python setup.py dist  会将项目打包成一个tar.gz文件

pip list

pip download django=1.9.2 --dest="/root/pipsource"

pip install

pip install --no-deps

pip install --upgrade

pip uninstall

pip show

posted on 2018-04-23 11:21  先行一步  阅读(89)  评论(0编辑  收藏  举报
Examples