如何在Debian 10上安装Anaconda
Anaconda是最受欢迎的Python/R数据科学和机器学习平台。
它用于大规模数据处理,预测分析和科学计算。
Anaconda发行版附带了1500多个开源数据包。
它还包括conda命令行工具和称为Anaconda Navigator的桌面图形用户界面。
在本教程中,我们将引导我们在Debian 10上下载并安装Anaconda Python Distribution。
安装Anaconda
在撰写本文时,Anaconda的最新稳定版本为2019.10.
在下载Anaconda安装程序脚本之前,请访问Anaconda下载页面,并检查是否有可用于Python 3的Anaconda新版本可供下载。
使用“ wget”或者“ curl”下载Anaconda安装脚本:
wget -P /tmp https://repo.anaconda.com/archive/Anaconda3-2019.10-Linux-x86_64.sh
下载可能需要一些时间,具体取决于连接速度。
完成后,使用“ sha256sum”命令验证脚本的数据完整性:
sha256sum /tmp/Anaconda3-2019.10-Linux-x86_64.sh
我们应该看到类似以下的输出:
46d762284d252e51cd58a8ca6c8adc9da2eadc82c342927b2f66ed011d1d8b53 /tmp/Anaconda3-2019.10-Linux-x86_64.sh
确保上面命令中打印的哈希值与我们要安装的Anaconda版本在64位Linux页面上的Anaconda with Python 3上可用的哈希值匹配。
https://docs.anaconda.com/anaconda/install/hashes/Anaconda3-2019.10-Linux-x86_64.sh-hash/
运行脚本以启动Anaconda安装过程:
sh /tmp/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”继续,然后按“ SPACE”在许可证中滚动。
审查完许可后,系统会提示我们接受许可条款:
Do you accept the license terms? [yes|no] [no] >>> yes
键入“是”以接受许可,脚本将要求我们选择安装位置。
Anaconda3 will now be installed into this location: /home/theitroad/anaconda3 - Press ENTER to confirm the location - Press CTRL-C to abort the installation - Or specify a different location below
默认位置适合大多数用户。
按“ ENTER”确认位置,然后将开始安装过程。
安装可能需要一些时间。
完成后,我们将看到以下内容:
Preparing transaction: done Executing transaction: done installation finished. Do you wish the installer to initialize Anaconda3 by running conda init? [yes|no]
输入“ yes”,按“ ENTER”,脚本将在“ PATH”中添加“ conda”:
==> 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
要激活Anaconda安装,请使用以下命令将Anaconda安装程序添加的新的“ PATH”环境变量加载到当前的shell会话中:
source ~/.bashrc
要验证Anaconda是否已成功安装,请使用“ conda”命令:
conda info
active environment : base active env location : /home/theitroad/anaconda3 shell level : 1 user config file : /home/theitroad/.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/theitroad/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/theitroad/anaconda3/pkgs /home/theitroad/.conda/pkgs envs directories : /home/theitroad/anaconda3/envs /home/theitroad/.conda/envs platform : linux-64 user-agent : conda/4.7.12 requests/2.22.0 CPython/3.7.4 Linux/4.19.0-5-amd64 debian/10 glibc/2.28 UID:GID : 1000:1000 netrc file : None offline mode : False
更新Anaconda
更新Anaconda是一个非常简单的过程。
首先使用以下命令更新“ conda”工具:
conda update conda
当提示我们确认更新时,键入“ y”继续。
更新“ conda”后,继续进行Anaconda更新:
conda update anaconda
与之前相同,在出现提示时,键入“ y”继续。
我们应该定期更新Anaconda安装。
卸载Anaconda
要从Debian系统上卸载Anaconda,请首先删除安装Anaconda的目录:
rm -rf ~/anaconda3
编辑“~/.bashrc”文件,然后从PATH环境变量中删除Anaconda目录:
~/.bashrc
# >>> conda initialize >>> # !! Contents within this block are managed by 'conda init' !! __conda_setup="$('/home/theitroad/anaconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)" if [ $? -eq 0 ]; then eval "$__conda_setup" else if [ -f "/home/theitroad/anaconda3/etc/profile.d/conda.sh" ]; then . "/home/theitroad/anaconda3/etc/profile.d/conda.sh" else export PATH="/home/theitroad/anaconda3/bin:$PATH" fi fi unset __conda_setup # <<< conda initialize <<<
运行以下“ rm”命令从用户主目录中删除隐藏的文件和文件夹:
rm -rf ~/.condarc ~/.conda ~/.continuum