Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Install Anaconda on Ubuntu (or Linux) via command line

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?

like image 550
JNevens Avatar asked Mar 04 '15 11:03

JNevens


1 Answers

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 
like image 162
Greg Lever Avatar answered Sep 21 '22 20:09

Greg Lever