Python教程

python使用国内镜像安装模块

本文主要是介绍python使用国内镜像安装模块,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

国内优秀的镜像源:

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

1.不修改镜像源配置,安装模块时指定镜像地址,如安装pandas

# 使用 -i 参数指定镜像源 为阿里云源地址
pip install pandas -i https://mirrors.aliyun.com/pypi/simple/
# 如果提示报错不是信任的源则可追加参数来解决 --trusted-host mirrors.aliyun.com

2.修改镜像源配置,一劳永逸

pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
# 如果使用http链接,则需要指定trusted-host参数
pip config set global.trusted-host mirrors.aliyun.com
pip install pandas

 

 

这篇关于python使用国内镜像安装模块的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!