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
#Ubuntu and Spyder - Dive into Linux (Keep Conquering) | |
#Setting up ML in Ubuntu | |
#Created Ubuntu VM Desktop from Scratch | |
#Install Curl | |
sudo apt-get update | |
sudo apt-get install curl | |
curl --version | |
#Install Anaconda | |
#Download linux package | |
#From terminal | |
sudo bash Anaconda3-4.3.0-Linux-x86_64.sh | |
#Run Spyder IDE | |
sudo apt install spyder | |
spyder | |
sudo spyder | |
#tensorflow | |
cd tmp | |
sudo pip install tensorflow | |
sudo pip uninstall tensorflow | |
sudo chown -R user /home/user/anaconda3 | |
conda update -n root conda | |
sudo env "PATH=$PATH" | |
conda update conda | |
conda update --all | |
conda install pytorch-cpu torchvision-cpu -c pytorch | |
#Install git in ubuntu | |
sudo apt install git | |
sudo apt install git-core | |
Happy Mastering DL!!!
No comments:
Post a Comment