如何使用wget安装最新的Anaconda

时间:2016-06-28 15:29:39

标签: python linux wget anaconda

我正在寻找通过我的服务器上的wget安装anaconda。我遇到https://askubuntu.com/questions/505919/installing-anaconda-python-on-ubuntuhttp://ericjonas.com/anaconda.html,看起来很有希望。在撰写本文时,当前版本(https://www.continuum.io/downloads#_unix)为4.0。我怎样才能获得最新版本。

4 个答案:

答案 0 :(得分:22)

wget只是下载文件......

for python 2.7:

wget https://repo.continuum.io/archive/Anaconda2-2018.12-Linux-x86_64.sh

for python3.X:

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

这是一个shell脚本,可以指导您完成安装。

在下载文件的文件夹中运行以下行以启动指导安装...

for python 2.7:

bash Anaconda2-2018.12-Linux-x86_64.sh

for Python 3.X:

bash Anaconda3-2018.12-Linux-x86_64.sh

检查最新的回购或如果您想要任何特定版本: https://repo.continuum.io/archive/

答案 1 :(得分:2)

这将为您提供适用于64位Linux环境的最新miniconda 3:

  1. 使用wget下载软件
  2. 分配执行权
  3. 执行并按照说明
  4. 加载.bashrc以更新PATH环境变量
  5. 更新conda
  6. 安装pip
  7. 创建环境
  8. ...

    wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
    chmod +x Miniconda3-latest-Linux-x86_64.sh
    ./Miniconda3-latest-Linux-x86_64.sh
    source ~/.bashrc
    
    # now update conda and install pip
    conda update conda
    conda install pip
    
    # (optional) create and activate an environment
    conda create -n py3 python pandas scikit-learn jupyter
    source activate py3
    

答案 2 :(得分:1)

这将从网站上抓取html中下载最新的anaconda版本:

wget -O - https://www.anaconda.com/distribution/ 2>/dev/null | sed -ne 's@.*\(https:\/\/repo\.anaconda\.com\/archive\/Anaconda3-.*-Linux-x86_64\.sh\)\">64-Bit (x86) Installer.*@\1@p' | xargs wget

答案 3 :(得分:0)

您可以编写以下 bash 脚本来自动执行安装过程。

cd ~

wget https://repo.continuum.io/archive/Anaconda3-2020.11-Linux-x86_64.sh
bash Anaconda3-2020.11-Linux-x86_64.sh -b -p ~/anaconda3
rm Anaconda3-2020.11-Linux-x86_64.sh
echo 'export PATH="~/anaconda3/bin:$PATH"' >> ~/.bashrc 

# Reload default profile
conda init

source ~/.bashrc