Linux Anaconda 安装与基本使用
安装
在官网anaconda.com/download#downloads
中找到安装包链接
比如https://repo.anaconda.com/archive/Anaconda3-2023.09-0-Linux-x86_64.sh
然后下载,安装:
#下载
wget https://repo.anaconda.com/archive/Anaconda3-2023.09-0-Linux-x86_64.sh
#安装
bash Anaconda3-2023.09-0-Linux-x86_64.sh
刚下载完需要重启来激活
使用
#创建环境
conda create --name test python=3
#激活环境
conda activate test
#退出环境
conda deactivate
#删除环境
conda remove -n test --all
换源
vim ~/.condarc
清华源:将以下文本复制进去
channels:
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
ssl_verify: true