python设置清华源镜像

1、设置临时清华源镜像

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package

2、设置默认永久清华源镜像

#升级
pip install pip -U
#设置
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

你可能感兴趣的:(python,python,清华源镜像)