Skip to content

Instantly share code, notes, and snippets.

@v-thomp4
Last active February 7, 2020 09:47
Show Gist options
  • Save v-thomp4/35b937cd616a2cb27ad95a7e5ddbb33a to your computer and use it in GitHub Desktop.
Save v-thomp4/35b937cd616a2cb27ad95a7e5ddbb33a to your computer and use it in GitHub Desktop.
anaconda for multi-user
cd /tmp
wget https://repo.continuum.io/archive/Anaconda3-2019.03-Linux-x86_64.sh
sh Anaconda3-2019.03-Linux-x86_64.sh
sudo groupadd anaconda
sudo groupmod -g 3000 anaconda
sudo chgrp -R anaconda /opt/anaconda3
sudo chmod 770 -R /opt/anaconda3
sudo adduser username anaconda
source /opt/anaconda3/bin/activate
conda create -n username
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment