Where did they go - the github and the anaconda discussion forums

I also use anaconda on eos, it basically installs most of what you might need for using python on scientific computing. You can also install mini conda instead, less bloated.

Here is part of a script I run on a recent install. Note the anaconda link can be updated from time to time… All install instructions for linux can be found on their webpage.

#Download anaconda

$ cd ~/Downloads

$ wget https://repo.anaconda.com/archive/Anaconda3-2022.05-Linux-x86_64.sh

#make installer executable and run it
$ chmod +x Anaconda3-2022.05-Linux-x86_64.sh

$ ./Anaconda3-2022.05-Linux-x86_64.sh

#After installation, create an icon in your program menu, assuming you install anaconda in home folder(replace username by you username)

$ echo "[Desktop Entry]
Version=1.0
Type=Application
Name=Anaconda
Exec=/home/username/anaconda3/bin/anaconda-navigator
Icon=/home/username/anaconda3/lib/python3.9/site-packages/anaconda_navigator/app/icons/Icon1024.png
Terminal=false" > ~/.local/share/applications
1 Like