I am Charmie

メモとログ

Keras deep learning library installation on Windows

Keras, which works with either TensorFlow or Theano, is a library for using deep learning in Python.

[code lang="bash"]

step 1 prepare for the installation

conda update conda conda update anaconda conda update --all conda install mingw libpython

step 2 update theano

pip install --upgrade --no-deps git+git://github.com/Theano/Theano.git

step 3 install keras

pip install git+git://github.com/fchollet/keras.git [/code]

If the last command doesn't work, try the following command instead, [code lang="bash"] pip install --no-deps git+https://git@github.com/Theano/Theano.git [/code]