Friday, April 1, 2022

[SOLVED] Install Anaconda on Ubuntu (or Linux) via command line

Issue

I would like to install Anaconda on a remote server.

The server is 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


Answered By - Greg Lever
Answer Checked By - Marilyn (WPSolving Volunteer)