安装Anaconda3-201812详解

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

下载可以去官方下载不过有点慢,网址:https://www.anaconda.com/download/

也可以去这个网址:https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/ 下载比较快

把下载好的文件上传到目录/home/python/Anaconda3 下:

[python@master Anaconda3]$ sh Anaconda3-2018.12-Linux-x86_64.sh

Welcome to Anaconda3 2018.12

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

然后按Enter键

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

然后输入:yes再按Enter键就开始安装:

>>> yes

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

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

[/home/python/anaconda3] >>>
PREFIX=/home/python/anaconda3

猜你喜欢

转载自www.cnblogs.com/hello-wei/p/10233192.html