Python pip 源配置

建议点击 查看原文 查看最新内容。

原文链接: https://typonotes.com/posts/2024/11/22/python-pip-conf/

使用阿里云的 pip 源。 支持 httpshttp

1
2
3
4
5
6
7
8
9
mkdir ~/.pip

cat > ~/.pip/pip.conf << EOF

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

EOF

mac + venv

在 mac + venv 下, 路径 ~/.pip/pip.conf 中的配置并不生效。

而真正生效的路径是 ~/.config/pip/pip.conf