You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
QingLong/Doc/Anaconda3/Anaconda3下载与安装.txt

33 lines
1.0 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# 下载地址
https://www.anaconda.com/download
# 安装与配置
https://blog.csdn.net/2302_76672693/article/details/144267428
# 将下面的四个目录添加到环境变量中
D:\anaconda3\Library\mingw-w64\bin
D:\anaconda3\Library\bin
D:\anaconda3\Library\usr\bin
D:\anaconda3\Scripts
# 确认是否安装成功
WIN+R输入cmd打开控制台输入conda -V
# 设置Anaconda镜像
打开控制台,输入
conda config --set show_channel_urls yes
生成.condarc文件
等待生成结束后,在控制台输入如下命令
conda config --add channels http://mirrors,tuna,tsinghua.edu.cn/anaconda/pkgs/free
conda config --set show channel urls yes
conda config --add channels http://mirrors,tuna,tsinghua.edu.cn/anaconda/cloud/conda-forge
conda config --add channels http://mirrors,tuna,tsinghua,edu.cn/anaconda/cloud/msys2/
等待命令结束后输入conda info查看是否换源成功
输入conda clean -i清除索引缓存保证用的是镜像站提供的索引
输入conda create -n myenv numpy测试是否成功