Note: This is an outdated tutorial, refer TensorFlow installation guide to install latest TensorFlow version.
Installation of TensorFlow CPU can be done in 3 simple steps.
conda create -n tensorflow_cpu pip python=3.6
activate tensorflow_cpu
pip install --ignore-installed --upgrade tensorflow
python
>> import tensorflow as tf
>> tf.__version__
Category: TensorFlow
Similar Articles