Last active
October 5, 2018 23:18
-
-
Save danielhavir/a0ae5df30759c0c3b4d1059f16bcb1c7 to your computer and use it in GitHub Desktop.
This file contains 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
tput setaf 6; echo '#### Downloading and installing Anaconda ####'; tput sgr0; | |
wget https://repo.anaconda.com/archive/Anaconda3-5.3.0-Linux-x86_64.sh | |
bash ./Anaconda3-5.3.0-Linux-x86_64.sh | |
tput setaf 2; echo '#### Anaconda has been successfully installed ####'; tput sgr0; | |
# Stop Xorg | |
sudo systemctl stop lightdm.service | |
# Remove .deb packages and Anaconda installer | |
rm -f Anaconda* nvidia* cuda* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment