Ubuntu 18.04.4 安装 Anaconda3

Anaconda 是一个用于科学计算的开源的 Python 发行版,支持 Linux, Mac, Windows, 包含了众多流行的科学计算、数据分析的 Python 包。其包含了conda、Python等180多个科学包及其依赖项。因为包含了大量的科学包,Anaconda 的下载文件比较大(约 531 MB),如果只需要某些包,或者需要节省带宽或存储空间,也可以使用Miniconda这个较小的发行版(仅包含conda和 Python)。

Conda是一个开源的包、环境管理器,可以用于在同一个机器上安装不同版本的软件包及其依赖,并能够在不同的环境之间切换

Anaconda包括Conda、Python以及一大堆安装好的工具包,比如:numpy、pandas等

Miniconda包括Conda、Python

下面详细说说在Ubuntu 18.04.4 LTS下安装Anaconda3-5.3.1-Linux-x86.sh的过程。

Ubuntu 18.04.4 LTS 默认自带的Python是3.7版本。

1、下载 Anaconda

下载 Anaconda3-5.3.1-Linux-x86_64.sh(Ubuntu18.04的对应的Anaconda版本):

法1:在Anaconda官网下载由于网络原因,速度很慢,如图1所示。

官方下载地址:https://www.anaconda.com/download/

或者:https://repo.anaconda.com/archive/

Ubuntu 18.04.4 安装 Anaconda3-5.3.1-Linux-x86_64.sh

Ubuntu 18.04.4 安装 Anaconda3-5.3.1-Linux-x86_64.sh

这里使用 Python 3.7 版本的 “Anaconda3-5.3.1-Linux-x86_64.sh”,如果下载速度慢或下载失败,请自己想办法。

方法2:现在我们在清华大学开源软件镜像站下载,如下图所示。

Ubuntu 18.04.4 安装 Anaconda3-5.3.1-Linux-x86_64.sh

Anaconda版本和默认Python版本对应

Anaconda 3-5.2是Python3.6

Anaconda 3-5.3是Python3.7

2、安装 Anaconda

安装较为简单,这里参考官方文档,进入下载文件的位置,打开终端terminal在文件目录下执行:

[linuxidc@linuxidc:~/www.linuxidc.com]$ 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
>>>回车

Ubuntu 18.04.4 安装 Anaconda3-5.3.1-Linux-x86_64.sh

然后根据如上提示输入回车

Ubuntu 18.04.4 安装 Anaconda3-5.3.1-Linux-x86_64.sh

如上图,这里需要查看Anaconda最终用户许可协议,一直回车知道浏览完信息即可。

Ubuntu 18.04.4 安装 Anaconda3-5.3.1-Linux-x86_64.sh

阅读完注册信息后,这里输入“yes”(如上图)

然后回车即可进行安装(如下图),Anaconda3现在将安装到以下位置:

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

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

[/home/linuxidc/anaconda3] >>>
PREFIX=/home/linuxidc/anaconda3
installing: python-3.7.0-hc3d631a_0 ...
Python 3.7.0

Ubuntu 18.04.4 安装 Anaconda3-5.3.1-Linux-x86_64.sh

Ubuntu 18.04.4 安装 Anaconda3-5.3.1-Linux-x86_64.sh

这里我们输入“yes”选择加入环境变量

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

Initializing Anaconda3 in /home/linuxidc/.bashrc
A backup will be made to: /home/linuxidc/.bashrc-anaconda3.bak


For this change to become active, you have to open a new terminal.

Thank you for installing Anaconda3!

Ubuntu 18.04.4 安装 Anaconda3-5.3.1-Linux-x86_64.sh

接下来,我们安装Visual Studio Code,Anaconda与Microsoft合作! Microsoft VSCode是精简的代码编辑器,支持调试,任务等开发操作
运行和版本控制。

Do you wish to proceed with the installation of Microsoft VSCode? [yes|no]

这部分我们输入

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/11534.html