修改 macOS 上的 easy_install 和 pip 为国内清华镜像源

   1 min read

本文介绍了如何通过修改 macOS 上的 easy_install 和 pip 的配置文件,设置为国内清华镜像源,从而加快速度。

macOS Logo

easy_install

如果没有对应的文件,则需手动创建。

文件地址:

~/.pydistutils.cfg

替换成如下文本:

[easy_install]
index_url = https://pypi.tuna.tsinghua.edu.cn/simple

pip

如果没有对应的文件,则需手动创建。

文件地址:

~/.pip/pip.conf

替换成如下文本:

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple