【conda】容易遗忘的命令使用总结

1. 在空conda虚拟环境中安装python

  • 退出到base环境
conda activate base
  • 执行命令
conda install -n 空环境名 python=版本名
例如:
conda install -n test python=3.10

2. 无需确认直接创建环境

在末尾加上-y,例如:
conda create -n test python=3.8 -y

你可能感兴趣的:(疑难解答,conda)