Python教程

更换Python默认软件镜像源

本文主要是介绍更换Python默认软件镜像源,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

pip国内的一些镜像

  • 阿里云 http://mirrors.aliyun.com/pypi/simple/
  • 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
  • 豆瓣(douban) http://pypi.douban.com/simple/
  • 清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
  • 中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/

永久生效

linux

修改 ~/.pip/pip.conf (没有就创建一个), 内容如下:

[global]
index-url = http://mirrors.aliyun.com/pypi/simple/
trusted-host = mirrors.aliyun.com  # trusted-host 此参数是为了避免麻烦,否则使用的时候可能会提示不受信任

win

直接在user目录中创建一个pip目录,如:C:\Users\xx\pip,新建文件pip.ini,内容如下

[global]
index-url = http://mirrors.aliyun.com/pypi/simple/
trusted-host = mirrors.aliyun.com  # trusted-host 此参数是为了避免麻烦,否则使用的时候可能会提示不受信任

临时生效

方式一

可以在使用pip安装包的时候在后面加上-i参数,指定pip源

pip install <包> -i https://pypi.tuna.tsinghua.edu.cn/simple

方式二

先修改源在安装包

pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/

pip install <包>
这篇关于更换Python默认软件镜像源的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!