一、下载安装文件
Miniconda3-py38_4.10.3-Windows-x86_64.exe
https://docs.conda.io/en/latest/miniconda.html
二、常用的命令行
#创建一个虚拟环境
conda create -n python_env_3.7 python=3.7.10
#切换到已创建的环境
conda activate python_env_3.7
#退出无效化已进的环境
# To deactivate an active environment, use
#
# $ conda deactivate
#删除不再需要的环境
# 删除某个环境
conda remove -n env_name
三、修改conda源
执行命令会自动生成文件.condarc 的文件,路径 C:Users%UserName%.condarc
channels:
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
- defaults
show_channel_urls: true
参考资料:
https://blog.csdn.net/weixin_39684041/article/details/114195318