欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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

 

相关标签: python pip pypi