pip 安装更换镜像
使用 pip 来安装 python 包有时候安装起来会非常慢,因此需要换成国内的源来加速下载:
1 单次修改源
以 Torch 为例,常规下载方式为:
修改为阿里源:
2 修改默认源
如果不想在每一次下载都指定源,可以直接修改默认源。
2.1 Linux
linux 下运行命令:
然后写入如下内容并保存(以阿里源为例):
2.2 Windows
windows 下找到pip.ini
文件,默认路径为:C:\Users\xxx\AppData\Roaming\pip\pip.ini
。
然后写入如下内容并保存(以阿里源为例):
3 常用的国内源
阿里云:http://mirrors.aliyun.com/pypi/simple/
豆瓣 :http://pypi.doubanio.com/simple/
清华大学:https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学:http://pypi.mirrors.ustc.edu.cn/simple/
华中理工大学:http://pypi.hustunique.com/
山东理工大学:http://pypi.sdutlinux.org/
4 常见报错
4.1 若无法连接
WARNING: The repository located at pypi.doubanio.com is not a trusted or secure host and is being ignored. If this repository is available via HTTPS we recommend you use HTTPS instead, otherwise you may silence this warning and allow it anyway with '--trusted-host pypi.doubanio.com'.ERROR: Could not find a version that satisfies the requirement opencv-python (from versions: none)ERROR: No matching distribution found for opencv-python
可以将源中的 http 改为 https
4.2 需要 user
Could not install packages due to an EnvironmentError: [Errno 13] Permission denied: '/anaconda3/lib/python3.7/site-packages/llvmlite-0.28.0.dist-info'Consider using the
--user
option or check the permissions.
需要加上--user:pip install <module> 改为 pip install --user <module>
学习更多编程知识,请关注我的公众号:
版权声明: 本文为 InfoQ 作者【代码的路】的原创文章。
原文链接:【http://xie.infoq.cn/article/e0fc7c911649c5bafd19b84f0】。文章转载请联系作者。
评论