Glam Prestige Journal

Bright entertainment trends with youth appeal.

How to install Anaconda for Python on Ubuntu?

Is there a way to use apt-get install?

I only have command line access to my server. How do I install Anaconda on Ubuntu 14.04 from the command line?

3

11 Answers

You can use wget to download from commandline:

For Python3:

  • 32 bits version:

    wget 
  • 64 bits version

    wget 

And after download is finished do:

  • 32 bits:

    bash Anaconda3-2020.02-Linux-x86.sh
  • 64 bits:

    bash Anaconda3-2020.02-Linux-x86_64.sh

For users using Python2, the "3" directly after Anaconda should be changed to a 2.

Source:

7

See Anaconda Hompepage for more detail!

Installation Instructions [Linux Install]

These instructions explain how to install Anaconda on a Linux system.

After downloading the Anaconda installer, run the following command from a terminal:

$ bash Anaconda-2.x.x-Linux-x86[_64].sh

After accepting the license terms, you will be asked to specify the install location (which defaults to ~/anaconda).

Note: You do NOT need root privileges to install Anaconda, if you select a user writable install location, such as ~/anaconda.* After the self extraction is finished, you should add the anaconda binary directory to your PATH environment variable.

As all of Anaconda is contained in a single directory, uninstalling Anaconda is easy (you simply remove the entire install location directory).


If you encounter any issues, please try disabling your antivirus software. Linux/OS X Uninstall

As all of Anaconda is contained in a single directory, uninstalling Anaconda is simple (you simply remove the entire install location directory):

$ rm -rf ~/anaconda
10

Nobody has explained here why apt-get and other package managers don't have packages for anaconda.

An important reason for this is that anaconda is meant to be usable by a user who, for whatever reason, doesn't have root privileges. In that case the user just installs into ~/anaconda, changes her own PATH and PYTHONHOME variables so as to run ~/anaconda/python, and is capable of controlling her personal python distribution, while modifying the "system" python might require an administrator's help.

Package managers always require sysadmin privileges.

3

If you are trying to it entirely in command line you use a bash script python 2 anaconda install bash script:

# Go to home directory
cd ~
# You can change what anaconda version you want at
#
wget
bash Anaconda2-4.2.0-Linux-x86_64.sh -b -p ~/anaconda
rm Anaconda2-4.2.0-Linux-x86_64.sh
echo 'export PATH="~/anaconda/bin:$PATH"' >> ~/.bashrc
# Reload default profile
source ~/.bashrc
conda update conda

python 3 anaconda install bash script

# Go to home directory
cd ~
# You can change what anaconda version you want at
#
wget
bash Anaconda3-4.2.0-Linux-x86_64.sh -b -p ~/anaconda
rm Anaconda3-4.2.0-Linux-x86_64.sh
echo 'export PATH="~/anaconda/bin:$PATH"' >> ~/.bashrc
# Reload default profile
source ~/.bashrc
conda update conda

Source:

2

In addition to @Vivek's answer, to get the latest python3 64-bit Linux version:

CONTREPO=
# Stepwise filtering of the html at $CONTREPO
# Get the topmost line that matches our requirements, extract the file name.
ANACONDAURL=$(wget -q -O - $CONTREPO index.html | grep "Anaconda3-" | grep "Linux" | grep "86_64" | head -n 1 | cut -d \" -f 2)
wget -O ~/Downloads/anaconda.sh $CONTREPO$ANACONDAURL
bash ~/Downloads/anaconda.sh -b -p $HOME/anaconda3

The grep filters in line 3 can be altered to match your requirements, of course.

Q: What is going on here?

  • wget -q -O - URL quietly (-q) gets the html at URL (in this case , which is accessed as $CONTREPO) and sends it to standard out (-O -).
  • | is called "pipe", and sends the output of the preceding command to the next command.
  • grep "text" returns the lines from its input that contain text. So first, we select all lines that contain "Anaconda3", then of those, we select all lines containing "Linux", and then all lines containing "86_64" (for the 64-bit version).
  • head -n 1 returns the first line of the input. I rely on the website maintaining order so that the most recent version is on top.
  • cut -d \" -f 2 splits the input on the double quote characters (-d \"), which surround the filename in the HTML's href, and returns the second field (-f 2), being the target of the href.
  • -b -p path options make the installation non-interactive "silent-mode", where you silently accept the license and are not asked for confirmation for the installation path.
0

Watch this video for complete installation

Download Anaconda from continuum here

To install Python 3.6 version

sudo bash Anaconda3-4.3.0-Linux-x86_64.sh 

For Python 2.7 version

 sudo bash Anaconda2-4.3.0-Linux-x86_64.sh

Run Navigator

anaconda-navigator

Run Spyder IDE

spyder

Run Jupyter Notebook

jupyter-notebook

Follow these steps:

  1. export PATH="~/anaconda/bin:$PATH"
  2. Then you can update them with:

    conda update conda
    conda update anaconda
1

You can use Pyenv to install Anaconda, and then easily switch back and forth between your system Python and your Anaconda Python:

  1. Install Pyenv
  2. pyenv install anaconda3-5.3.0 (pynev install -l to see what versions of anaconda are available)

I have followed install anaconda on ubuntu tutorial and installed it on my system. You can run following commands.conda update conda conda update anaconda

Take a look at the Anaconda repo archive page and select an appropriate version that you'd like to install.

After that, just do:

 # replace this `Anaconda3-version.num-Linux-x86_64.sh` with your choice
~$ wget -c
~$ bash Anaconda3-version.num-Linux-x86_64.sh

Concrete Example:

As of this writing, Anaconda3-2019.03 is the latest version. So,

$ wget -c
$ bash Anaconda3-5.0.1-Linux-x86_64.sh

After installation is completed, you can also optionally delete the installation script by:

$ rm -rf Anaconda3-5.0.1-Linux-x86_64.sh
1

I think this is cleaner:

# install python
sudo apt-get update
sudo apt-get install wget
wget -O ~/miniconda.sh
bash ~/miniconda.sh -b -p $HOME/miniconda
# source /Users/my_username/opt/anaconda3/bin/activate
source ~/miniconda/bin/activate
# conda init zsh
conda init
conda update -n base -c defaults conda
conda install conda-build
conda create -n iit_synthesis python=3.9
conda activate iit_synthesis
#conda remove --name metalearning2 --all

inspired from:

  • mac provides the nice renaming and downloading to location:
  • mac os (no brew):
  • brew but not sure if recommended:

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy