当前位置: 代码迷 >> 综合 >> Linux软件安装|Anaconda3
  详细解决方案

Linux软件安装|Anaconda3

热度:98   发布时间:2024-01-04 11:28:01.0
wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-5.1.0-Linux-x86_64.sh
#清华大学镜像站可以显著提升下载速度,尤其是教育网网络环境
#虽然此时5.2.0已经推出,但是清华大学镜像站尚未有相关安装文件
bash Anaconda3-5.1.0-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就安装好了,接着启用清华大学镜像,提升下载速度:

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes