Ubuntu18.04安装Anaconda3

一边操作一边记笔记。

首先下载anaconda3镜像,清华大学开源软件镜像站下载地址: https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/ 下拉到最低端选择Linux,选择最新版(32/64位)下载。

Open in Terminal,在Terminal中执行以下命令:

bash Anaconda3-5.3.1-Linux-x86_64.sh

接下来根据提示输入完成安装:

wmz@wmz:~/Downloads$ bash Anaconda3-5.3.1-Linux-x86_64.sh 

Welcome to Anaconda3 5.3.1

In order to continue the installation process, please review the license
agreement.
Please, press ENTER to continue

按回车键阅读注册信息,阅读完注册信息后,输入“yes”回车继续:

kerberos (krb5, non-Windows platforms)
    A network authentication protocol designed to provide strong authentication 
for client/server applications by using secret-key cryptography.

cryptography
    A Python library which exposes cryptographic recipes and primitives.


Do you accept the license terms? [yes|no]
[no] >>> yes

按回车键确认安装位置:

Do you accept the license terms? [yes|no]
[no] >>> yes

Anaconda3 will now be installed into this location:
/home/wmz/anaconda3

  - Press ENTER to confirm the location
  - Press CTRL-C to abort the installation
  - Or specify a different location below

[/home/wmz/anaconda3] >>> 

输入“yes”选择添加环境变量;

Do you wish the installer to initialize Anaconda3
in your /home/wmz/.bashrc ? [yes|no]
[no] >>> yes

最后一个是否安装vscode,看自己的意思,随意。

参考:https://blog.csdn.net/u012243626/article/details/82469174

原文地址:https://www.cnblogs.com/juluwangshier/p/13443028.html