conda 添加镜像源
时间: 2023-10-17 14:30:01 浏览: 131
conda添加镜像源方法
5星 · 资源好评率100%
要在conda中添加镜像源,可以按照以下步骤进行操作:
1. 打开终端或命令提示符,并激活你的conda环境(如有需要)。
2. 使用以下命令添加镜像源,将 `<mirror_name>` 替换为你想要添加的镜像源的名称,`<mirror_url>` 替换为该镜像源的URL地址:
```
conda config --add channels <mirror_name>
conda config --set show_channel_urls yes
conda config --set channel_priority strict
conda config --set <mirror_name> <mirror_url>
```
例如,如果你要添加清华大学的镜像源,可以使用以下命令:
```
conda config --add channels tsinghua
conda config --set show_channel_urls yes
conda config --set channel_priority strict
conda config --set tsinghua https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
```
3. 添加完镜像源后,你可以使用 `conda info` 命令来查看当前配置的镜像源列表。
现在你就成功地将镜像源添加到conda中了。在使用conda命令安装或更新软件包时,它将从你指定的镜像源下载软件包。
阅读全文