官方源地址: https://pypi.org/simple
# 部分模块国更新不及时需要切换到官网 执行下面的命令 或者-i
pip config set global.index-url https://pypi.org/simple
pip install xx -i https://pypi.org/simple
国内
# 清华源
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
# 阿里源
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
# 腾讯源
pip config set global.index-url http://mirrors.cloud.tencent.com/pypi/simple
# 豆瓣源
pip config set global.index-url http://pypi.douban.com/simple/
使用镜像源安装
对于 pip 换源,需要临时使用镜像源安装,如下所示:some-package 为你需要安装的包名
pip install -i https://mirrors.cernet.edu.cn/pypi/web/simple some-package
设置 pip 默认镜像源,升级 pip 到最新的版本 (>=10.0.0) 后进行配置,如下所示:
python -m pip install --upgrade pip
pip config set global.index-url https://mirrors.cernet.edu.cn/pypi/web/simple
如果您的 pip 默认源的网络连接较差,可以临时使用镜像源升级 pip
python -m pip install -i https://mirrors.cernet.edu.cn/pypi/web/simple --upgrade pip
对于 conda
换源,镜像站提供了 Anaconda
仓库与第三方源(conda-forge
、msys2
、pytorch
等),各系统都可以通过修改用户目录下的 .condarc
文件来使用镜像站。不同系统下的 .condarc
目录如下:
Linux:
${HOME}/.condarc
macOS:
${HOME}/.condarc
Windows:
C:\Users\<YourUserName>\.condarc
注意:
Windows
用户无法直接创建名为.condarc
的文件,可先执行conda config --set show_channel_urls yes
生成该文件之后再修改
快速配置
cat <<'EOF' > ~/.condarc
channels:
- defaults
show_channel_urls: true
default_channels:
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/r
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/msys2
custom_channels:
conda-forge: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
pytorch: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
EOF