常用镜像源
用pip管理工具安装库文件时,默认使用国外的源文件,在国内的下载速度非常慢,切换成国内的镜像源通常可以快很多。比较常用的国内镜像有:
- 阿里云 https://mirrors.aliyun.com/pypi/simple/
- 豆瓣 http://pypi.douban.com/simple/
- 清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
- 中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
- 华中科技大学 http://pypi.hustunique.com/
临时使用方法
在使用pip的时候,加上参数-i和镜像地址。例如:
pip install -i https://mirrors.aliyun.com/pypi/simple/ pandas
这样就会从阿里云镜像安装pandas库。
更改配置文件
Linux
修改 ~/.pip/pip.conf (没有就创建一个文件夹及文件)
内容如下:
[global]
index-url = https://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host = https://mirrors.aliyun.com
windows
直接在user目录中创建一个pip目录,如:C:\Users\xx\pip,然后新建文件pip.ini,即 %HOMEPATH%\pip\pip.ini,在pip.ini文件中输入以下内容:
[global]
index-url = https://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host = https://mirrors.aliyun.com
通过命令配置
在不同的操作系统上文件目录不一样,要去找比较麻烦,所以最好是通过pip的子命令config进行配置。例如:
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
pip config set install.trusted-host https://mirrors.aliyun.com
配置完成后可以通过根据输出提示的配置文件路径去打开配置文件查看。
注意: 低版本的pip是没有config这个子命令的。如果没有可以升级pip:
python -m pip install --upgrade pip
网友评论