下载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
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐