腾讯云centos安装anaconda3并配置jupyter notebook环境

准备工作

  • 腾讯云centos系统
  • 配置好网络

安装anaconda3

从官网下载:

wget https://repo.continuum.io/archive/Anaconda3-2019.07-Linux-x86_64.sh

给下载的文件增加执行的权限( u代表用户,x代表执行,u+x即给用户增加执行的权限):

chmod u+x Anaconda3-2019.07-Linux-x86_64.sh

接着运行脚本,安装anaconda3

./Anaconda3-2019.07-Linux-x86_64.sh

安装过程中一直回车,遇到选择yes或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!

==========================

你可能感兴趣的:(腾讯云centos安装anaconda3并配置jupyter notebook环境)