9951 explained code solutions for 126 technologies


python-kerasHow do I install Keras on Windows using Python?


Keras is a high-level neural networks API, written in Python and capable of running on top of TensorFlow, CNTK, or Theano. Installing Keras on Windows using Python can be done easily using pip.

pip install Keras

This command will install the latest version of Keras on your Windows machine.

  1. Open Command Prompt from the Start menu.
  2. Type the command pip install Keras, and press Enter.
  3. The installation process will begin, and the output will show the progress of the installation.
  4. Once the installation is complete, you can check the version of Keras installed by typing pip show Keras in the command prompt.
Name: Keras
Version: 2.3.1
Summary: Deep Learning for humans
Home-page: https://keras.io
Author: Francois Chollet
Author-email: [email protected]
License: MIT
Location: c:\python\python37\lib\site-packages
Requires: six, h5py, scipy, pyyaml, numpy
Required-by:

You can now use Keras on Windows with Python.

Helpful links

Edit this code on GitHub