1
2
3
4
5
6
7
8
9
10
11
12
|
# 下载
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
# 加执行权限
chmod +x Miniconda3-latest-Linux-x86_64.sh
# 运行
./Miniconda3-latest-Linux-x86_64.sh
# 建议conda init 选 yes
# 然后退出终端, 重新连接,加载环境变量或者
source ~./bashrc # 注意这一步要在bash环境,不能是fish之类的
|