Conda 配置

2024/1/1

安装与使用 (opens new window)

# 安装:

# 下载:

官网 (opens new window) 清华镜像 (opens new window)

wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-2021.11-Linux-x86_64.sh
1

# 安装:

bash Anaconda3-2021.11-Linux-x86_64.sh
1

# 确认安装成功:

命令行前方出现(base)字样。

安装完成之后 source ~/.bashrc 或者重启终端,anaconda才能生效。

# Miniconda:

wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh
1
2

# 使用:

# 查看:

conda info -e
conda env list
1
2

# 创建:

conda create -n [环境名称] python= [版本号]
1

# 激活:

conda acitvate [环境名称]
1

# 退出:

conda deactivate
1

# 清理:

conda clean --all
1

# 删除:

conda remove -n [环境名称] --all
1

# 复制:

conda create -n test1 --clone test2
1