Windows下更改pip源

1、WIN+R,然后输入%APPDATA%,会定位到一个新的目录下,我的是C:\Users\Administrator\AppData\Roaming

2、在该目录下新建pip文件夹

3、然后到pip文件夹里面去新建个pip.ini文件

4、然后打开该文件,将以下内容写入进去

[global]

timeout = 6000

index-url = http://pypi.douban.com/simple

trusted-host = pypi.douban.com

5、然后保存

附国内镜像源:

  阿里云 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/

你可能感兴趣的:(Windows下更改pip源)