python pip的简单使用
安装库:
pip install 库名
卸载库:
pip uninstall 库名
列出所有安装的库:
pip list
列出所有过期的库:
pip list --outdated
升级库:
pip install --upgrade 库名
安装扩展包:
python setup.py build
python setup.py install
导出当前环境库列表
pip freeze >requirements.txt
集成包地址:
# 有的库无法安装,需要编译环境的可以直接下载编译好的文件进行安装
https://www.lfd.uci.edu/~gohlke/pythonlibs/Twisted
Twisted-18.9.0-cp37-cp37m-win_amd64.whl
安装:
pip install Twisted-18.9.0-cp37-cp37m-win_amd64.whl
下载库,以备离线使用
下载单个库
pip download -d "E:/cyfAI/iso/python/packages" pandas
下载库列表
pip download -d "E:/cyfAI/iso/python/packages" -r requirements.txt
安装指定的离线包
安装单个库
pip install --no-index --find-index="d:/python27/packages" pandas
安装库列表
pip install --no-index --find-index="d:/python27/packages" -r requirements.txt
批量升级1
在stackoverflow上有人提供了批量更新的办法,一个循环就搞定(注意–upgrade后面的空格)
import pip
from subprocess import call
from pip._internal.utils.misc import get_installed_distributions
for dist in get_installed_distributions():
call("pip install --upgrade " + dist.project_name, shell=True)
批量升级2,执行失败后退出
# 解决方案,暂时卸载,或者写一个py文件try一下
pip install pip-review
pip-review --local --interactive