mac配置pip镜像源
- 1、在终端输入cd ~/.pip 如果能正常执行,则说明已存在.pip目录,否则执行以下命令:
mkdir .pip
cd .pip
- 2.创建 pip.conf文件,在终端执行以下命令:
vim pip.conf
- 3.在pip.conf文件中输入以下内容
[global]
index-url = https://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com
index-url 也可以换成其他镜像源:
https://mirrors.aliyun.com/pypi/simple/ # 阿里云
https://pypi.douban.com/simple/ # 豆瓣
https://pypi.tuna.tsinghua.edu.cn/simple/ # 清华大学
https://pypi.mirrors.ustc.edu.cn/simple/ # 中国科学技术大学
- 4、查看是否配置成功
随便安装一个软件,查看Looking in indexes
> pip install websockets
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://mirrors.aliyun.com/pypi/simple/
上次更新: 2023/06/28, 19:28:04