pip更改国内源
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pip更改国内源相关的知识,希望对你有一定的参考价值。
pip更改国内源
国内源:
- 豆瓣:http://pypi.douban.com/simple/
- 清华:https://pypi.tuna.tsinghua.edu.cn/simple
- 阿里云: http://mirrors.aliyun.com/pypi/simple/
- 中国科技大学: https://pypi.mirrors.ustc.edu.cn/simple/
- 中国科学技术大学: http://pypi.mirrors.ustc.edu.cn/simple/
使用方法
1. 临时使用
如果只是临时使用,可以使用-i 加源的方式,如:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple 模块名
注意:如果是http方式的pip源,默认是不安全的,需要增加--trusted-host选项,如:
pip install -i http://pypi.douban.com/simple --trusted-host pypi.douban.com 模块名
2. 永久更改
linux修改配置文件
修改 ~/.pip/pip.conf配置文件,没有就创建一个,修改 index-url至你需要的pip源,内容如下:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
http方式的配置文件如下:
[global]
index-url = http://pypi.douban.com/simple
[install]
trusted-host=pypi.douban.com
windows修改配置文件
直接在user目录中创建一个pip目录,如:C:Userswatsonpip,新建文件pip.ini,内容如下:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
其中index-url就是你选择的pip源
http方式的配置文和linux下的配置文相同。
新建文件完成后,在环境变量Path后追加:%USERPROFILE%pippip.ini。
以上是关于pip更改国内源的主要内容,如果未能解决你的问题,请参考以下文章