February 2020
Intermediate to advanced
432 pages
10h 50m
English
First, create a dedicated conda environment called tensorflow. It consists of a virtual space that lets users isolate the set of Python packages you will use for a specific project. This has the advantage of making it straightforward to replicate the environment in another machine with minimal effort:
$ conda create -n tensorflow pip python=2.7$ conda activate tensorflowThe second line produces the activation and binds the next installations to this tensorflow environment.