Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save parrondo/612f79d4a5e302467270be54d2260b07 to your computer and use it in GitHub Desktop.
Save parrondo/612f79d4a5e302467270be54d2260b07 to your computer and use it in GitHub Desktop.
Anaconda Keras / TensorFlow environment setup
Install TensorFlow (CPU), Keras, and some other tools to a new linux anaconda environment.
Open Anaconda Prompt
$ conda create --name keras35 python=3.5
$ source activate keras35
(keras35)$ # Your prompt should change
(keras35)$ conda install jupyter
(keras35)$ conda install scipy
(keras35)$ conda install spyder
(keras35)$ pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.2.1-cp35-cp35m-linux_x86_64.whl
(keras35)$ pip install pyyaml h5py
(keras35)$ pip install keras
(keras35)$ pip install opencv-python
(keras35)$ pip install matplotlib seaborn argparse
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment