国内代理-pip


常见的国内 pip 代理源有以下几个:

阿里云 PyPI 镜像源:https://mirrors.aliyun.com/pypi/simple/ 清华大学 PyPI 镜像源:https://pypi.tuna.tsinghua.edu.cn/simple/ 豆瓣 PyPI 镜像源:https://pypi.doubanio.com/simple/ 网易 PyPI 镜像源:https://mirrors.163.com/pypi/simple/ 中科大 PyPI 镜像源:https://pypi.mirrors.ustc.edu.cn/simple/

这些代理源都可以通过修改 pip 的配置文件来进行设置。例如,要将 pip 的代理源设置为阿里云 PyPI 镜像源,可以在 ~/.pip/pip.conf 文件中添加以下内容:

[global] index-url = https://mirrors.aliyun.com/pypi/simple/

pip3 install -i https://pypi.douban.com/simple/  --trusted-host pypi.douban.com  django

如果你使用的是 Windows 操作系统,则需要在 %APPDATA%\pip\pip.ini 文件中添加以上内容。注意,在使用代理源时,需要确保网络连接正常,否则可能会导致下载速度变慢或者下载失败。