Skip to content

Instantly share code, notes, and snippets.

@vyraun
Created January 19, 2017 10:10
Show Gist options
  • Save vyraun/4d5df704435864cdd26e365a1d547cdd to your computer and use it in GitHub Desktop.
Save vyraun/4d5df704435864cdd26e365a1d547cdd to your computer and use it in GitHub Desktop.
Set up an Ubuntu VM with Tensorflow+Keras in 4 lines
wget https://repo.continuum.io/archive/Anaconda2-4.2.0-Linux-x86_64.sh
bash Anaconda2-4.2.0-Linux-x86_64.sh
export PATH=/home/viraun/anaconda2/bin:$PATH
pip install tensorflow keras
@vyraun
Copy link
Author

vyraun commented Jan 19, 2017

Everything is installed in the root conda environment (python 2.7).

conda info -e
conda list

@vyraun
Copy link
Author

vyraun commented Jan 19, 2017

chmod +x run.sh
./run.sh

or sh run.sh

@vyraun
Copy link
Author

vyraun commented Jan 10, 2018

conda create -n py36 python=3.6 anaconda

for python 3 environment

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment