pip安装更换镜像

举报
代码的路 发表于 2023/01/13 15:38:18 2023/01/13
【摘要】 原文链接使用pip来安装python包有时候安装起来会非常慢,因此需要换成国内的源来加速下载: 1 单次修改源以Torch为例,常规下载方式为:pip install torch修改为阿里源:pip install -i https://mirrors.aliyun.com/pypi/simple torch 2 修改默认源如果不想在每一次下载都指定源,可以直接修改默认源。 2.1 Linu...

原文链接

使用pip来安装python包有时候安装起来会非常慢,因此需要换成国内的源来加速下载:

1 单次修改源

以Torch为例,常规下载方式为:

pip install torch

修改为阿里源:

pip install -i https://mirrors.aliyun.com/pypi/simple torch

2 修改默认源

如果不想在每一次下载都指定源,可以直接修改默认源。

2.1 Linux

linux下运行命令:

vi ~/.pip/pip.conf

然后写入如下内容并保存(以阿里源为例):

 [global]
 trusted-host =  mirrors.aliyun.com
 index-url = https://mirrors.aliyun.com/pypi/simple

2.2 Windows

windows下找到pip.ini文件,默认路径为:C:\Users\xxx\AppData\Roaming\pip\pip.ini

然后写入如下内容并保存(以阿里源为例):

 [global]
 trusted-host =  mirrors.aliyun.com
 index-url = https://mirrors.aliyun.com/pypi/simple

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>

pip install --user -i https://pypi.tuna.tsinghua.edu.cn/simple torch

 
 

学习更多编程知识,请关注我的公众号:

代码的路

【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。