1 | conda info | 查看conda的信息 | |
2 | conda config show | 查看conda的配置信息 | |
3 | conda config --show-sources | 查看conda的当前下载源信息 | |
4.1 | conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ | 添加conda下载包的源 | 此处使用的是清华的源 |
4.2 | conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/ | 添加conda下载包的源 | 此处使用的是清华的源 |
4.3 | conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/ | 添加conda下载包的源 | 此处使用的是清华的pytorch源 |
5 | conda config --set show_channel_urls yes | 显示通道资源信息 | |
6 | conda env list | 查看当前有哪些环境 | |
7 | conda create -n myEnv python=3.8 | 创建一个名为myEnv的环境,并指定python版本为3.8 | |
8 | conda activate myEnv | 激活名为myEnv的环境 | |
9 | conda deactivate | 关闭当前激活环境,之后默认激活base环境 | |
10 | conda list | 查看当前激活环境下安装的所有包 | |
11 | conda remove -n myEnv --all | 删除名为myEnv的环境 | |