Conda (Anaconda / Miniconda)

An open source package management system and environment management system

official site

Installation

Download the installer from official site or from wget

pem@PEM:~$ wget https://repo.anaconda.com/archive/Anaconda3-2019.07-Linux-x86_64.sh
...
pem@PEM:~$ bash Anaconda3-2019.07-Linux-x86_64.sh

Welcome to Anaconda3 2019.07

In order to continue the installation process, please review the license
agreement.
Please, press ENTER to continue
>>> 

press ENTER

===================================
Anaconda End User License Agreement
===================================

Copyright 2015, Anaconda, Inc.
...

Do you accept the license terms? [yes|no]
[no] >>> 
Please answer 'yes' or 'no':'

'yes'

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

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

[/home/pem/anaconda3] >>> 

press ENTER

PREFIX=/home/pem/anaconda3
Unpacking payload ...
Collecting package metadata (current_repodata.json): done                                                           
Solving environment: done

# All requested packages already installed.

installation finished.
WARNING:
    You currently have a PYTHONPATH environment variable set. This may cause
    unexpected behavior when running the Python interpreter in Anaconda3.
    For best results, please verify that your PYTHONPATH only points to
    directories of packages that are compatible with the Python interpreter
    in Anaconda3: /home/pem/anaconda3
Do you wish the installer to initialize Anaconda3
by running conda init? [yes|no]
[no] >>>

'yes'

...
Thank you for installing Anaconda3!

===========================================================================

Anaconda and JetBrains are working together to bring you Anaconda-powered
environments tightly integrated in the PyCharm IDE.

PyCharm for Anaconda is available at:
https://www.anaconda.com/pycharm

reload bashrc

pem@PEM:~$ source ~/.bashrc
(base) pem@PEM:~$