本文最后更新于 66 天前,其中的信息可能已经有所发展或是发生改变。
检查环境变量
echo $PIP_INDEX_URL
echo $PIP_EXTRA_INDEX_URL
检查其他配置文件
cat .pip/pip.conf
cat /etc/pip.conf
cat .config/pip/pip.conf
查看当前生效的配置
pip config list
尝试删除配置项
pip config unset global.index-url
pip config unset global.extra-index-url
添加清华源
临时使用
pip install -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple some-package
升级pip后加入清华源
python -m pip install --upgrade pip
pip config set global.index-url https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple
(选)通过清华源升级pip
python -m pip install -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple --upgrade pip
如果问题依然存在,考虑重新安装pip
pip install --upgrade --force-reinstall pip