Last active
February 7, 2020 09:47
-
-
Save v-thomp4/35b937cd616a2cb27ad95a7e5ddbb33a to your computer and use it in GitHub Desktop.
anaconda for multi-user
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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