更换PIP源
PIP源在国外,速度慢,可以更换为国内源,以下是国内一些常用的PIP源。
- 豆瓣(douban) http://pypi.douban.com/simple/ (推荐)
- 清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
- 阿里云 http://mirrors.aliyun.com/pypi/simple/
- 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
- 中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
临时更换源,加上-i参数即可,如下:
pip install ×××× -i https://mirrors.aliyun.com/pypi/simple
pip命令
普通安装
pip install ××××
定版本安装
# 安装特定版本的package,通过使用==, >=, <=, >, <来指定一个版本号。 pip install ‘pythonModuleName<2.0’ pip install ‘pythonModuleName>2.0,<2.0.3
卸载已安装的库
pip uninstall pythonModuleName
列出已经安装的库
pip list
将已经安装的库列表保存到文本文件中
pip freeze > requirements.txt
根据依赖文件批量安装库
pip install -r requirements.txt
使用wheel文件安装
除了使用上面的方式联网进行安装外,还可以将安装包也就是 wheel 格式的文件,下载到本地,然后使用 pip 进行安装。比如在 PYPI上 提前下载的 pillow 库的 wheel 文件,后缀名为whl。
pip install pillow-4.2xxxxxxx.whl
参考:https://blog.csdn.net/hz18790581821/article/details/89227380
原文地址:https://www.cnblogs.com/zhuminghui/p/11376337.html
时间: 2024-11-04 01:50:50