Python PIP安装太慢怎么办? 配置PyPi/pip国内镜像源
程序员文章站
2022-05-07 23:08:28
...
pip install * 安装10~200kb 太慢了怎么解决呢??
接下来:
使用说明
编辑 pip
配置文件,将 index-url
修改为 https://mirrors.ustc.edu.cn/pypi/web/simple
。
pip
的配置文件一般位于(如果没有,请直接创建):
- Unix 环境:
$HOME/.config/pip/pip.conf
- macOS:
$HOME/Library/Application Support/pip/pip.conf
- Windows:
%APPDATA%\pip\pip.ini
(%APPDATA%
通常是C:\Users\YOUR_USERNAME\AppData\Roaming\
)
全局或者 virtualenv
等的 pip
配置文件位置,请参考 https://pip.pypa.io/en/stable/user_guide/#configuration
pip.conf
文件配置示例如下:
[global]
index-url = https://mirrors.ustc.edu.cn/pypi/web/simple
format = columns
使用 pip
时如果出现 configparser.MissingSectionHeaderError: File contains no section headers.
, 说明你的 pip.conf
忘记加上 [global]
这一行了。
同步方式
使用 bandersnatch,从 pypi.python.org 官方同步。
相关链接
pip: | https://pip.pypa.io/ |
---|---|
bandersnatch: | https://pypi.python.org/pypi/bandersnatch |
上一篇: pip3 换源
下一篇: Android中计时器总结