Anaconda使用教程(二)——镜像源配置

Windows系统Anaconda使用教程(二)——镜像源配置

文章目录

  • Windows系统Anaconda使用教程(二)——镜像源配置
    • 1. 放大镜搜索Anaconda Prompt
    • 2. 单击打开,输入以下源
    • 参考链接

1. 放大镜搜索Anaconda Prompt

Anaconda使用教程(二)——镜像源配置_第1张图片

2. 单击打开,输入以下源

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/ 
conda config --set show_channel_urls yes 
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
conda config --show channels

Anaconda使用教程(二)——镜像源配置_第2张图片

参考链接

Anaconda配置国内镜像源

你可能感兴趣的:(python,深度学习,开发语言)