March 2018
Intermediate to advanced
272 pages
7h 53m
English
After everything we've just been through together, you'll be pleased to see how straightforward installing TensorFlow and Keras now is.
Let's start with installing TensorFlow
The installation of TensorFlow can be done using the following code:
pip install --upgrade tensorflow-gpu
Before we install Keras, let's test our TensorFlow installation. To do this, I'll be using some sample code from the TensorfFow website and the IPython interpreter.
Start the IPython interpreter by typing IPython at the bash prompt. Once IPython has started, let's attempt to import TensorFlow. The output would ...