解决pip安装报错Cannot fetch index base URL http://pypi.python.org/simple/

可以通过指定国内镜像源来安装: pip --trusted-host 镜像源 install 模块名 -i 镜像源路径

比如:python3 -m pip install -i http://pypi.douban.com/simple --trusted-host pypi.douban.com -r requirements.txt

--trusted-host 指定可信源(忽略https的安全要求)

pipy国内镜像目前有:

http://pypi.douban.com/ 豆瓣

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

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

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

 

更多配置参数见:http://www.pip-installer.org/en/latest/configuration.html

 

你可能感兴趣的:(Python)