Anaconda 安装及常用命令

Anaconda 下载安装包 linux , windows

链接:https://pan.baidu.com/s/10VhNRzOr-W19Z_RemhnthA

提取码:k6mo

 

常用命令 :

-- 激活conda
conda activate
-- 退出conda
conda deactivate
-- 切换环境
conda activate test
-- 创建环境 test
conda create -n test
-- 创建环境 test 指定python环境
conda create -n test python=3.8
-- 删除环境 test
conda remove -n test --all
-- 查看所有环境
conda info --envs

  

 

posted @ 2022-12-14 16:02  qukaige  阅读(58)  评论(0编辑  收藏  举报