pip freeze
或者
pip list
pip install <SomePackage>
pip install <dir>/<file>
或者
pip install --use-wheel --no-index --find-links=wheelhouse/ <SomePackage>
后者可简写为:
pip install --no-index -f=<dir>/ <SomePackage>
pip uninstall <SomePackage>
pip search <keywords>
pip install -U <SomePackage>
pip install -U pip
pip show -f
pip list -o
pip install <SomePackage> -d <dir>
pip wheel <SomePackage>
pip install -i http://pypi.v2ex.com/simple
更改pip配置文件
在Unix和MacOS上为:$HOME/.pip/pip.conf
在Windows上为:%HOME%\pip\pip.ini
[global]
timeout = 6000
index-url = http://pypi.douban.com/simple
https://pip.pypa.io/en/latest/