Linux软件安装②|Anaconda3
本文于2018年5月31日发表于知乎专栏,查看原文
本文于2018年6月1日发表于微信公众号,查看原文
下载Anaconda:
1 | wget https://repo.anaconda.com/archive/Anaconda3-2020.11-Linux-x86_64.sh |
如果你的机器在国内,可以从清华大学镜像站下载,可以显著提升下载速度,尤其是教育网网络环境:
1 | wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-2020.11-Linux-x86_64.sh |
运行sh文件:
1 | bash Anaconda3-2020.11-Linux-x86_64.sh |
Please, press ENTER to continue
按Enter
Do you accept the license terms? [yes|no]
输yes
[/home/jzzeng/anaconda3] >>>
这里需要问是否需要修改安装目录,如需修改则输入安装目录,如不修改则按回车
然后等待一段时间
Do you wish the installer to prepend the Anaconda3 install location to PATH in your /home/jzzeng/.bashrc ? [yes|no]
yes
Do you wish to proceed with the installation of Microsoft VSCode? [yes|no]
no
这样Anaconda3就安装好了。如果你在国内,可以启用清华大学镜像,提升下载速度:
1 | conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ |