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.
- Open Command Prompt from the Start menu.
- Type the command
pip install Keras, and press Enter. - The installation process will begin, and the output will show the progress of the installation.
- Once the installation is complete, you can check the version of Keras installed by typing
pip show Kerasin 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
More of Python Keras
- How do I use zero padding in Python Keras?
- How can I use Python Keras online?
- How can I use Python Keras to create a neural network with zero hidden layers?
- How can I use YOLO with Python and Keras?
- How do I use Python's tf.keras.utils.get_file to retrieve a file?
- How do I use a webcam with Python and Keras?
- How can I enable verbose mode when using Python Keras?
- How can I decide between using Python Keras and PyTorch for software development?
- How do I use the to_categorical function from TensorFlow in Python to convert data into a format suitable for a neural network?
- How can I use Keras with Python to run computations on the CPU?
See more codes...