本文介绍在Debian 10操作系统上下载并安装Anaconda Python Distribution的方法,包括更新及卸载Anaconda。
安装Anaconda 在选写本文时,Anaconda的最新稳定版本为2019.10,在下载Anaconda安装程序脚本之前,请访问Anaconda下载页面,地址:https://www.anaconda.com/,并检查是否有可用于Python 3(参考:在Debian 10系统上为Python 2/3安装和使用Pip的方法)的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 你应该看到类似以下的输出:
确保上面命令中打印的哈希值与你要安装的Anaconda版本在64位Linux上的Anaconda with Python 3页面上可用的哈希值匹配,地址:https://docs.anaconda.com/anaconda/install/hashes/lin-3-64: 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 键入yes接受许可,脚本将要求你选择安装位置: Anaconda3 will now be installed into this location: /home/vagrant/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,脚本将把conda添加到你的PATH中: ==> 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
更新Anaconda 更新Anaconda是一个非常简单的过程,首先使用以下命令更新conda工具: $ conda update conda 当提示你确认更新时,键入y继续。 更新conda后,继续进行Anaconda更新: $ conda update anaconda 与之前相同,出现提示时,键入y继续。 注:你应该定期更新Anaconda。
卸载Anaconda 要从Debian 10系统上卸载Anaconda,请首先删除安装Anaconda的目录: $ rm -rf ~/anaconda3 编辑~/.bashrc文件,然后从PATH环境变量中删除Anaconda目录: # >>> conda initialize >>> # !! Contents within this block are managed by 'conda init' !! __conda_setup="$('/home/vagrant/anaconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)" if [ $? -eq 0 ]; then eval "$__conda_setup" else if [ -f "/home/vagrant/anaconda3/etc/profile.d/conda.sh" ]; then . "/home/vagrant/anaconda3/etc/profile.d/conda.sh" else export PATH="/home/vagrant/anaconda3/bin:$PATH" fi fi unset __conda_setup # <<< conda initialize <<< 运行以下rm命令以从用户主目录中删除隐藏的文件和文件夹: console-bash rm -rf ~/.condarc ~/.conda ~/.continuum``` 参考:在Linux中使用Rm命令的方法:删除多个文件及目录/文件夹,删除前提示。
结论 按照以上操作就可以在Debian 10系统上下载并安装成功Anaconda,已亲测成功,安装成功后建议定期更新Anaconda,以获得更稳定的性能和安全保障。
相关主题 |