pip更换国内源

Python pip更换国内源

国内源

  • 常用的国内源
1、阿里云 https://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/

linux更换操作

  • 创建这个文件并输入以下内容~/.pip/pip.conf
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple

windows:更换操作

  • 在user目录中创建一个pip目录,如:C:\Users\pip中,创建pip.ini,然后输入以下内容
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple

然后测试是否快了

  • pip install pymysql

你可能感兴趣的:(pip更换国内源)