ubuntu下anaconda安装

  1. 下载链接
    官网:https://repo.continuum.io/archive/
    百度云:链接:https://pan.baidu.com/s/1JxNjCNmdAezVajdIesm1wg  提取码:ngtx 
    ubuntu下anaconda安装
  2. 安装
    bash Anaconda3-2019.03-Linux-x86_64.sh 
    ubuntu下anaconda安装
    回车确认

    ubuntu下anaconda安装
    输入yes,回车

    ubuntu下anaconda安装
    回车,默认路径安装

    ubuntu下anaconda安装
    输入yes,回车,安装成功!
  3. 确认安装版本
    python3
    ubuntu下anaconda安装
    python版本任然为默认的3.5.2,一次需要修改环境变量

    gedit ~/.bashrc
    在最后一行加入export PATH="/root/anaconda3/bin:$PATH",保存。(注意路径修改为自己安装路径)
    ubuntu下anaconda安装

    使环境变量立即生效
    source ~/.bashrc
    ubuntu下anaconda安装

    python3再次确认
    ubuntu下anaconda安装
    python与安装版本一致,表示安装成功!