conda常用命令

查看当前源,也就是显示.condarc文件的内容

conda config --show-sources

添加国内镜像源。打开用户目录下的.condarc文件,用如下内容覆盖

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

添加3.7版本的Python环境

conda create -n py37 python=3.7  

激活指定的python环境,这样只是临时激活,重启后还是会恢复默认环境

conda activate py37

查看当前已安装的环境,其中*号表示当前激活的环境

conda info -e
上一篇:ubuntu 20.04 更换源


下一篇:The following untracked working tree files would be overwritten by merge