如何在CentOS 8上安装Anaconda
Anaconda是最受欢迎的Python/R数据科学和机器学习平台。
它用于大规模数据处理,预测分析和科学计算。
Anaconda发行版附带了1500多个开源数据包。
它还包括“ conda”命令行工具和称为Anaconda Navigator的桌面图形用户界面。
在本教程中,我们将解释如何在CentOS 8上安装Anaconda Python Distribution。
安装Anaconda
在撰写本文时,Anaconda的最新稳定版本为2019.10.
在下载Anaconda安装程序脚本之前,请访问Anaconda下载页面,并检查是否有可用于Python 3的Anaconda新版本可供下载。
完成以下步骤以在CentOS 8上安装Anaconda:
- 使用从“下载”页面复制的链接下载Anaconda安装脚本:
wget -P /tmp https://repo.anaconda.com/archive/Anaconda3-2019.10-Linux-x86_64.sh
根据连接速度,下载可能需要一些时间。如果要在台式机上安装Anaconda,则可以使用Web浏览器下载脚本。
- 使用“ sha256sum”命令验证脚本的数据完整性:
sha256sum Anaconda3-5.3.1-Linux-x86_64.sh
输出应如下所示:
46d762284d252e51cd58a8ca6c8adc9da2eadc82c342927b2f66ed011d1d8b53 /tmp/Anaconda3-2019.10-Linux-x86_64.sh
确保上面命令中打印的哈希值与我们在适当的Anaconda版本上在64位Linux页面上使用Python 3的Anaconda上可用的哈希值匹配。
- 通过执行安装脚本来启动Anaconda安装过程:
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”继续,然后按“ ENTER”在许可证中滚动。系统会要求我们批准许可条款:
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'确认位置,安装过程将继续进行。如果出现错误提示'bunzip2:命令未找到',请使用以下命令安装'bzip2'软件包:'sudo dnf install bzip2',然后重新运行安装脚本。安装可能需要一些时间才能完成。完成后,我们将看到以下输出:
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安装,我们可以关闭并重新打开shell程序,或者通过键入以下命令将新的“ PATH”环境变量加载到当前的shell程序会话中:
source ~/.bashrc
- 使用“ conda”命令来验证Anaconda的安装。以下命令将显示有关安装的信息:
conda info
active environment : base active env location : /home/vagrant/anaconda3 shell level : 1 user config file : /home/vagrant/.condarc populated config files : conda version : 4.7.12 conda-build version : 3.18.9 python version : 3.7.4.final.0 ...
更新水蟒
更新Anaconda是一个非常简单的过程,请首先使用以下方法更新conda工具:
conda update conda
当提示我们确认更新时,键入“ y”继续。
更新conda后,请继续进行Anaconda更新:
conda update anaconda
与上一个命令相同,出现提示时,键入“ y”继续。
不要忘记定期更新Anaconda安装。
卸载Anaconda
要从CentOS系统上卸载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