You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
635 B
29 lines
635 B
查询 conda 版本
|
|
conda --version
|
|
|
|
更新 conda
|
|
conda update conda
|
|
|
|
查看conda环境详细信息
|
|
conda info
|
|
|
|
查看当前有哪些虚拟环境
|
|
conda env list
|
|
|
|
|
|
创建一个新的虚拟环境
|
|
conda create --name py310 python=3.10
|
|
|
|
激活虚拟环境
|
|
conda activate py310
|
|
|
|
退出当前虚拟环境
|
|
conda deactivate
|
|
|
|
删除某个虚拟环境
|
|
conda remove -n py310 --all
|
|
|
|
# 设置Conda的国内源
|
|
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
|
|
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
|
|
conda config --set show_channel_urls yes |