跳转至

Pip换源

临时修改

1
pip install <package-name> -i <temporary-mirror-url>

例如用清华源下载 pandas

1
pip install pandas -i https://pypi.tuna.tsinghua.edu.cn/simple

永久修改

1
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

恢复默认源

1
pip config unset global.index-url