更改PIP源地址

Posted treelight

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了更改PIP源地址相关的知识,希望对你有一定的参考价值。

临时更改

可以在使用pip的时候,加上参数-i和镜像地址(如
https://pypi.tuna.tsinghua.edu.cn/simple),
例如:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pandas,这样就会从清华镜像安装pandas库。

永久更改

(1)、打开文件夹C:Users用户名AppDataRoaming (2)、新建文件夹pip,在里面放pip.ini
(3)、在pip.ini中复制以下内容
[global]
timeout = 6000
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
trusted-host = https://pypi.tuna.tsinghua.edu.cn/simple

国内pip源

1、中国科学技术大学 : https://pypi.mirrors.ustc.edu.cn/simple
2、清华:https://pypi.tuna.tsinghua.edu.cn/simple
3、豆瓣:http://pypi.douban.com/simple/
4、华中理工大学 : http://pypi.hustunique.com/simple
5、山东理工大学 : http://pypi.sdutlinux.org/simple

以上是关于更改PIP源地址的主要内容,如果未能解决你的问题,请参考以下文章

Python pip源更改

Python-pip更改国内源

Python pip常用命令和源地址修改

Python pip常用命令和源地址修改

Python pip 国内换源的几个办法

easy_install 和pip安装软件时使用指定的 源地址