conda安装与镜像源配置

下载Anaconda

这个镜像:https://repo.anaconda.com/archive/
或者安装clash for windows后,直接去官网下载。

安装过后配置环境变量(如果安装的时候没勾选配置环境变量的话)
在这里插入图片描述

接下来,要把之前配置好的python的环境变量移动到Anaconda上方,不然python版本就会显示Anaconda自带的python版本。我这里,python环境变量在最顶端,所以不用移动,电脑使用的python会自动选择处于环境变量最上方的版本如下图所示:
在这里插入图片描述

配置conda镜像源

方法1

查看已有的镜像源:

conda config --show channels

把C:\Users\85249.condarc文件显示出来

conda config --set show_channel_urls yes

配置清华源(好像http不能加s,加了都报错了,我文件里面把s去掉了):

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/pytorch/linux-64/

如果添加错了,想删除,命令如下:

conda config --remove channels https://xxxxxxxxxxxxxxx

# 例如
conda config --remove channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/

方法2

将配置镜像源的文件显示出来

conda config --set show_channel_urls yes

之后再C盘的这个位置找到这个文件,打开后用文本编辑器添加即可。
在这里插入图片描述
内容如下:
在这里插入图片描述

channels:
  - http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
  - http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
  - http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
  - http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/linux-64/
  - defaults
show_channel_urls: true

最后保存即可

其他

验证方式:在cmd中输入下面命令:

conda -V

在这里插入图片描述

另外,conda安装的包都在这里:
在这里插入图片描述

conda升级:

# 这个会把安装包也升级了
conda update -n base -c defaults conda
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值