pip --version
pip --help
pip install -U pip
pip install SomePackage
pip install SomePackage==1.0.4
pip install SomePackage>=1.0.4
pip install --upgrade SomePackage
或 pip install -U SomePackage
pip uninstall SomePackage
pip search SomePackage
pip show
pip show -f SomePackage
pip list
pip list -o
pip freeze
pip install SomePackage -i http://pypi.intra.xxx.com/simple/ --trusted-host pypi.intra.xxx.com
pip install -r requirements.txt
python2 -m pip install xxx
python3 -m pip install xxx
python -m pip uninstall pip
pip常用下载源
https://pypi.tuna.tsinghua.edu.cn/simple/ # 清华大学 https://mirrors.aliyun.com/pypi/simple/ # 阿里云 https://pypi.douban.com/simple/ # 豆瓣 https://pypi.mirrors.ustc.edu.cn/simple/ # 中国科学技术大学 pypi.mirrors.ustc.edu.cn/simple/ # 中国科学技术大学 https://pypi.hustunique.com/ # 华中科技大学
|