查看虚拟环境
- conda info --env
conda 查询可安装python版本
conda search python --full-name
-
conda 设置国内源
- conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
- conda config --set show_channel_urls yes
conda 安装指定python版本
- conda install python=3.10.0
创建虚拟环境
- conda create -n your_env_name python=x.x