通过pip安装软件,使用默认源的时候,往往下载速度很慢,所以需要配置到国内的源。
临时安装某个包。
1 | pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package |
设为默认配置:
1 | pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple |
会生成一个配置文件,在macOS下面的位置如下:
1 | ~/.config/pip/pip.conf |
内容为:
1 | [global] |
再更新pip
本身:
1 | pip install pip -U # 更新pip |
临时使用某个镜像。
1 | pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pip -U |