当前位置:   article > 正文

Python下载第三方库换源(镜像网站)_python第三镜像网站

python第三镜像网站

一些国内的镜像站(源):

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

2.阿里云:https://mirrors.aliyun.com/pypi/simple/

3.豆瓣:https://pypi.douban.com/simple/

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

5.华中理工大学:http://pypi.hustunique.com/

6.山东理工大学:http://pypi.sdutlinux.org/

临时换源:

pip  install xxx  -i  源(url)

永久换源:

代码实现:

pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

windows:

找到当前venv里的pip包,在根目录创建【pip.ini】,写上:

[global]
timeout = 6000
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
trusted-host = pypi.tuna.tsinghua.edu.cn

linux:

找到当前venv里的pip包,在根目录创建【pip.conf】,同样写上:

[global]
timeout = 6000
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
trusted-host = pypi.tuna.tsinghua.edu.cn

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/代码探险家/article/detail/1010835
推荐阅读
相关标签
  

闽ICP备14008679号