enter bash ~/Downloads/Anaconda3-2020.07-Linux-x86_64.sh
This will start the installation process.
Next stop license agreement - review:
scroll down to the end of the text (use enter key) and enter "yes" if you agree:
press enter to confirm location:
confirm yes to initialize anaconda:
finished:
close your terminal session. to activate the configuration changes, it needs to be closed and re-opened anyhow.
Verify Installation / Version
to verify the installation, open a terminal (if you had one open during install, close and re-open).
if the prompt line starts with (base), the conda installation worked. python --version
should yield you a result as should conda --version
Configuration
add application icon for anaconda navigator:
(this is optional)
open terminal cd .local/share/applications touch anaconda-navigator.desktop
open files, go to .local/share/applications (if needed, enable "show hidden files")
open file anaconda-navigator.desktop and add the following. (Replace |your user name| with your actual ubuntu user name.
[Desktop Entry]
Version=1.0
Type=Application
Name=Anaconda
GenericName=Anaconda Navigator
Exec=bash -c 'export PATH="/home/|your user name|/anaconda3/bin:$PATH" && /home/|your user name|/anaconda3/bin/anaconda-navigator'
Comment=Scientific Python Development Environment - Python3
Icon=/home/|your user name|/anaconda3/lib/python3.8/site-packages/anaconda_navigator/static/images/anaconda-icon-256x256.png
Terminal=false
StartupNotify=true
MimeType=text/x-python;
Categories=Development;Science;IDE;Qt;Education;
the result should look like this:
add application icon for spyder:
(this is optional)
open terminal cd .local/share/applications touch spyder.desktop
open files, go to .local/share/applications (if needed, enable "show hidden files")
open file spyder.desktop and add the following. (Replace |your user name| with your actual ubuntu user name.
[Desktop Entry]
Version=1.0
Type=Application
Name=Spyder
GenericName=Spyder - The Scientific Python Development Environment
Exec=bash -c 'export PATH="/home/|your user name|/anaconda3/bin:$PATH" && /home/|your user name|/anaconda3/bin/spyder'
Comment=Scientific Python Development Environment - Python3
Icon=/home/|your user name|/anaconda3/lib/python3.8/site-packages/spyder/images/spyder_dark.png
Terminal=false
StartupNotify=true
MimeType=text/x-python;
Categories=Development;Science;IDE;Qt;Education;