August 2018
Intermediate to advanced
272 pages
7h 2m
English
Using pip may be the quickest to get started, but I see that the most convenient method involves using conda environments.
Conda environments allow you to create isolated Python environments, which are completely separate from your system Python or any other Python programs. This way, there is no chance of your TensorFlow installation messing with anything already installed, and vice versa.
To use conda, you must download Anaconda from here: https://www.anaconda.com/download/. This will include conda with it. Once you've installed Anaconda, installing TensorFlow can be done by entering the certain commands in your Command Prompt. First, enter the following:
$ conda create -n tf_env pip python=3.5
This will create your ...