conda的使用
2025/6/6...小于 1 分钟
conda的使用
我这里安装了 minicoda
查看已安装的包
conda list
conda update 包名
conda remove 包名
Python 版本管理
列出可安装的 Python 版本
conda search python创建指定 Python 版本的环境
conda create -n test python=3.8激活环境
conda activate test退出当前环境(返回 base 环境)
conda activate列出所有环境
conda env list删除环境
conda env remove -n test