Skip to content

Instantly share code, notes, and snippets.

@jeffgreenca
Created March 29, 2017 00:45
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 10 You must be signed in to fork a gist
  • Save jeffgreenca/28e0fe58644b8af48f97a3e18fe08302 to your computer and use it in GitHub Desktop.
Save jeffgreenca/28e0fe58644b8af48f97a3e18fe08302 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 anaconda environment.
Open Anaconda Prompt
conda create --name tensorflow35 python=3.5
conda activate tensorflow35
conda install jupyter
conda install scipy
conda install spyder
pip install tensorflow
pip install pyyaml h5py
pip install keras
pip install opencv-python
pip install matplotlib seaborn argparse
@jeffgreenca
Copy link
Author

@majacaci00 Ha! Thank you!

@MyVanitar
Copy link

You can use conda install -c hesi_m keras to install the latest version of Keras (2.1.6) and Tensorflow(1.8) for you.

@MyVanitar
Copy link

MyVanitar commented Jun 8, 2018

Now, You can use conda install -c hesi_m keras to install the latest version of Keras (2.2.0) and Tensorflow(1.8.0) for you.

@BirdeeChen
Copy link

@VanitarNordic, this command still install tensorflow(1.1.0)

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