第2步:运行anaconda安装脚本

转到我们下载脚本的位置,并运行它.

cd ~/Downloads

或者我们可以运行以下命令。

cd /tmp
wget https://repo.anaconda.com/archive/Anaconda3-2019.10-Linux-x86_64.sh

下载脚本后,运行以下命令以开始安装。

bash Anaconda3-2019.10-Linux-x86_64.sh

我们应该看到如下所示的输出:

Welcome to Anaconda3 2019.10
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

然后继续

Anaconda将在主目录中选择要安装的默认位置。
如果我们不想更改,请按Enter继续

Anaconda3 will now be installed into this location:
/home/jack/anaconda3
- Press ENTER to confirm the location
- Press CTRL-C to abort the installation
- Or specify a different location below
[/home/jack/anaconda3] >>>

回答yes

Preparing transaction: done
Executing transaction: done
installation finished.
Do you wish the installer to initialize Anaconda3
by running conda init? [yes|no]
[no] >>> yes

继续

安装后,我们应该看到以下消息:

==> For changes to take effect, close and re-open your current shell. <==
If you'd prefer that conda's base environment not be activated on startup,
set the auto_activate_base parameter to false:
conda config --set auto_activate_base false
Thank you for installing Anaconda3!
===========================================================================
Anaconda and JetBrains are working together to bring you Anaconda-powered
environments tightly integrated in the PyCharm IDE.
PyCharm for Anaconda is available at:
https://www.anaconda.com/pycharm

接下来,打开一个新的Ubuntu终端会话,以便更改生效。

或者只需运行以下命令 以加载Anaconda安装新的路径环境变量,该变量被添加到当前shell会话中

source ~/.bashrc

要验证是否已安装anaconda,请在下面键入以下命令:

conda info

我们应该看到类似于下面的输出:

(base) jack@ubuntu1804:~$conda info
     active environment : base
    active env location : /home/jack/anaconda3
            shell level : 1
       user config file : /home/jack/.condarc
 populated config files : 
          conda version : 4.7.12
    conda-build version : 3.18.9
         python version : 3.7.4.final.0
       virtual packages : 
       base environment : /home/jack/anaconda3  (writable)
           channel URLs : https://repo.anaconda.com/pkgs/main/linux-64
                          https://repo.anaconda.com/pkgs/main/noarch
                          https://repo.anaconda.com/pkgs/r/linux-64
                          https://repo.anaconda.com/pkgs/r/noarch
          package cache : /home/jack/anaconda3/pkgs
                          /home/jack/.conda/pkgs
       envs directories : /home/jack/anaconda3/envs
                          /home/jack/.conda/envs
               platform : linux-64
             user-agent : conda/4.7.12 requests/2.22.0 CPython/3.7.4 Linux/5.0.0-32-generic ubuntu/18.04.3 glibc/2.27
                UID:GID : 1000:1000
             netrc file : None
           offline mode : False

如果要更新anaconda,只需运行以下命令:

conda update conda

出现提示时,键入y或者yes以开始更新.

第1步:下载Anaconda安装脚本

适用于Linux系统的Anaconda附带自己的安装脚本。
我们需要做的就是下载并安装,它将根据系统设置的其余部分。
要下载它,请转到下面的链接:

https://www.anaconda.com/distribution/

然后选择Linux版本并下载 。

在Ubuntu 18.04/16.04上安装Anaconda Python/R平台

Anaconda是Linux、Windows和Mac OS上世界上最流行的Python/R数据科学和机器学习平台。

日期:2020-07-07 20:57:11 来源:oir作者:oir