Skip to content
jarubulapriyanka edited this page Oct 28, 2017 · 1 revision

TENSOR FLOW:Tensor Flow is an open-source software library for machine learning across a range of tasks. It is a symbolic math library, and also used as a system for building and training neural networks to detect and decipher patterns and correlations, analogous to human learning and reasoning.

INSTALLATION OF TENSOR FLOW: STEP 1: Install pip and virtual environment by issuing one of the following commands. --> sudo apt-get install python-pip python-dev python-virtualenv

STEP 2: Create a virtual environment by issuing one of the following commands. -->virtualenv --system-site-packages

step 3: Activate the virtualenv environment by issuing one of the following commands. -->source ~/tensorflow/bin/activate --> source ~/tensorflow/bin/activate.csh step 4: The preceding source command should change your prompt to the following. (tensorflow)$ step 5:Ensure pip ≥8.1 is installed. -->easy_install -U pip step 6:Issue one of the following commands to install TensorFlow in the active virtual environment. -->pip install --upgrade tensorflow After installing TensorFlow, validate the installation by testing it with a small python code.

Clone this wiki locally