How to install anaconda in ubuntu 19.10 :

Step 1: Update Local Package Manager

  • Open Terminal (by pressing Ctrl+Alt+T)

  • Type following command in Terminal and press Enter

In [ ]:
sudo apt-get update

Step 2: Download Anaconda

  • with "wget" command which is a command line utility for downloading files from the Internet

  • Open Terminal (by pressing Ctrl+Alt+T)

  • Type following command in Terminal and press Enter

In [ ]:
wget https://repo.anaconda.com/archive/Anaconda3-2020.02-Linux-x86_64.sh

Find Anaconda Installers from A or B :

A - Find Anaconda Installers at: https://www.anaconda.com/products/individual

B - All Anaconda Installers files are available at : https://repo.anaconda.com/archive/ .

Type following command in Terminal :

- wget (Link address of Anaconda Installers)
- wget https://repo.anaconda.com/archive/Anaconda3-2020.02-Linux-x86_64.sh

1- Find Anaconda Installers

2- Right-Click on Anaconda Installers -> Copy link address of Anaconda Installers (Instead of clicking on it to download)

Step 3: Install Anaconda (for Python 3.7)

  • Type following command in Terminal and press Enter
In [ ]:
bash Anaconda3-2020.02-Linux-x86_64.sh

You will license terms -> when you see More in Terminal -> Press Enter until you see -> Do you accept the license terms? [yes|no] :

Do you accept the license terms? [yes|no]

  • Type -> yes

Next you will see : Anaconda3 will now be installed into this location:

Anaconda3 will now be installed into this location: /home/bahar/anaconda3

  • Press ENTER to confirm the location
  • Press CTRL-C to abort the installation
  • Or specify a different location below
  • Press ENTER

Next you will see: installation finished.

Do you wish the installer to initialize Anaconda3 by running conda init? [yes|no]

installation finished.

Do you wish the installer to initialize Anaconda3

by running conda init? [yes|no]

  • Type -> yes

  • Close Terminal

Step 4: Update Anaconda

  • Open new Terminal (by pressing Ctrl+Alt+T)

  • Type following command in Terminal and press Enter

In [ ]:
conda update --all

Step 5: Open Anaconda

  • Type following command in Terminal and press Enter
In [ ]:
anaconda-navigator