pythonsshcommand-lineserveranaconda

Install Anaconda on Ubuntu (or Linux) via command line


I would like to install Anaconda on a remote server running Ubuntu 12.04.

I only have access to this server via SSH.

How can I install Anaconda via the command line?


Solution

  • Something along the lines of:

    wget https://repo.anaconda.com/archive/Anaconda3-2020.07-Linux-x86_64.sh
    

    to get the installer for 64 bit linux followed by:

    bash Anaconda3-2020.07-Linux-x86_64.sh
    

    You can get the latest release from here