转自How to Install Anaconda on Ubuntu 20.04
- 首先确认安装完了所有依赖
sudo apt install libgl1-mesa-glx libegl1-mesa libxrandr2 libxrandr2 libxss1 libxcursor1 libxcomposite1 libasound2 libxi6 libxtst6
- 使用浏览器或者
wget
下载Anaconda:
wget -P conda_tmp https://repo.anaconda.com/archive/Anaconda3-2020.02-Linux-x86_64.sh
下载时间取决于你的网速,conda_tmp
是下载路径,可以自己修改。
3. 此步可选
sha256sum conda_tmp/Anaconda3-2020.02-Linux-x86_64.sh
输出应该为:
Output
2b9f088b2022edb474915d9f69a803d6449d5fdb4c303041f60ac4aefcc208bb conda_tmp/Anaconda3-2020.02-Linux-x86_64.sh
- 运行安装脚本:
bash conda_tmp/Anaconda3-2020.02-Linux-x86_64.sh
你所见到的输出应当是这样的:
Output
Welcome to Anaconda3 2020.02
In order to continue the installation process, please review the license
agreement.
Please, press ENTER to continue
>>>
- 敲回车
ENTER
键以继续,然后会展示license,此时一直回车就好,最后会问你是否同意协议:
Output
Do you approve the license terms? [yes|no]
输入yes
来接受,然后他会提示你安装路径:
Output
Anaconda3 will now be installed into this location:
/home/zhuyeqi/anaconda3
- Press ENTER to confirm the location
- Press CTRL-C to abort the installation
- Or specify a different location below
默认路径就行了,适用于绝大多数用户,按回车来同意安装路径。
安装操作会需要花上一点时间,一旦完成,脚本会提示你是否运行conda init
,输入yes
。
Output
Installation finished.
Do you wish the installer to initialize Anaconda3
by running conda init? [yes|no]
这会自动将conda
的命令行工具添加到你的系统环境变量PATH
中。
激活Anaconda的安装你只需要关闭当前的终端并重新打开一个,或者在当前终端输入下面的命令来重新加载环境变量即可。
source ~/.bashrc
安装完毕!
注:本文只翻译转载了原文的安装操作,更多操作例如升级、卸载如有需要,可以查看原文
评论区