使用 pip install `package_name` 命令下载安装模块,因为是默认从PyPI中下载相应的库文件,下载速度会比较慢,有时还会超时报错。
为了解决这个问题,我们可以更换为国内镜像源,速度立马提升N倍,妈妈再也不用担心下载报错的问题了,哈哈哈。
一.国内镜像源:
清华:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
华中科技大学:http://pypi.hustunique.com/
山东理工大学:http://pypi.sdutlinux.org/
豆瓣:http://pypi.douban.com/simple/
中科大:https://pypi.mirrors.ustc.edu.cn/simple/
二.换源方法:
1.临时换源:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple package_name
其中,`package_name`为要安装的包名。这个命令会将pip源临时切换到清华大学源,安装完成后会自动恢复原有源。如果您需要使用其他源,只需要将链接中的域名替换为对应的源即可。
注意,使用临时换源命令只是在该次操作时生效,下次使用pip时仍然会使用原有源。如果您需要永久更改pip源,请使用下面的方法编辑pip配置文件。
2.永久换原:
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
3.其它方法-手动添加配置文件:
网上说要在 C:\Users\帐户名\pip\pip.ini 这里创建文件,这是不对的。
实际测试要在这里创建文件:C:\Users\帐户名\AppData\Roaming\pip\pip.ini
配置文件示例:
[global]
timeout = 6000
index-url = https://pypi.tuna.tsinghua.edu.cn/simple/
trusted-host = pypi.tuna.tsinghua.edu.cn