当前位置:   article > 正文

pip换源_pip 使用腾讯源下载

pip 使用腾讯源下载

在使用Python安装包工具pip时经常会出现下载很慢的情况,这其中有很大一部分原因和pip的源有关,在我们安装python后,通常python解释器自带pip这个工具,但是这里pip是设置的默认源,也就是官方源:链接: https://pypi.org/simple,这个源在国内的下载速度是很慢,所以我们为了提高包的下载速度我们可以通过换源来实现。

Windows下换源

pip国内源路径

阿里云:http://mirrors.aliyun.com/pypi/simple/

豆瓣(douban): http://pypi.douban.com/simple/

清华大学:https://pypi.tuna.tsinghua.edu.cn/simple/

中国科学技术大学:http://pypi.mirrors.ustc.edu.cn/simple/

临时换源

# 清华源
pip install markdown -i https://pypi.tuna.tsinghua.edu.cn/simple
# 阿里源
pip install markdown -i https://mirrors.aliyun.com/pypi/simple/
# 腾讯源
pip install markdown -i http://mirrors.cloud.tencent.com/pypi/simple
# 豆瓣源
pip install markdown -i http://pypi.douban.com/simple/
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

也可以在下载包时临时指定源

# 下载python中的Django包,这里使用的是豆瓣源
pip install django -i http://pypi.douban.com/simple 
  • 1
  • 2

永久换源

# 清华源
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
# 阿里源
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
# 腾讯源
pip config set global.index-url http://mirrors.cloud.tencent.com/pypi/simple
# 豆瓣源
pip config set global.index-url http://pypi.douban.com/simple/
# 换回默认源
pip config unset global.index-url

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

Linux下换源

  1. 在根目录下创建/修改~/.pip/pip.confpip配置文件;
  2. 进入文件新增/修改内容;
[global]
index-url=http://pypi.douban.com/simple
[install]
trusted-host=pypi.douban.com

  • 1
  • 2
  • 3
  • 4
  • 5
  1. 保存文件并退出。
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/531692
推荐阅读
相关标签
  

闽ICP备14008679号