pip源介绍
pip源是pip在安装第三方库要访问的服务器网址
pip默认源:https://pypi.org/simple
pip默认源服务器地址是美国的,访问起来比较慢,所以一般会更改默认的pip源
pip国内镜像
阿里云 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/
临时使用pip源
临时使用清华源,只要在pip安装命令加上i参数跟上清华源地址即可,如:
pip install [model] -i https://pypi.tuna.tsinghua.edu.cn/simple/
永久更改pip源
Windows
在“C:\Users\[你的电脑用户名]”下新建pip文件夹,在此文件夹下新建pip.ini文件,并输入一下内容保存:
[global]
timeout = 6000
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = pypi.tuna.tsinghua.edu.cn
index-url就是你想要修改的镜像源
Linux
修改 ~/.pip/pip.conf (没有就创建一个文件夹及文件。文件夹要加“.”,表示是隐藏文件夹),内容同上