Installing TensorFlow with conda Explained
In this post, we will learn to install TensorFlow with conda For this setup, we first need to understand what is conda and why we use it. What is conda conda is an open source package management system which creates and manages different environment and packages. Why we use conda By using conda we can create different instances of the same compiler. Like we can create different versions of python with different packages so that the packages do not interfere with each other. Installing with Anaconda Take the following steps to install TensorFlow in an Anaconda environment: 1. Follow the instructions on the Anaconda download site to download and install Anaconda. Launch anaconda terminal. 2. Create a conda environment named tensorflow by invoking the following command: C:> conda create -n tensorflow pip python=3.5 3. Activate the conda environment by issuing the following command: C:> activate tensorflow ( tensorflow )C: