https://www.python.org/ftp/python/3.6.2/python-3.6.2.exe
2. Install TensorFlow for Python:
From a cmd window execute this:
pip3 install --upgrade tensorflow
3. Create this file:
tf.py
- Code: Select all Expand view
- import tensorflow as tf
hello = tf.constant( "Hello world" )
session = tf.Session()
print( session.run( hello ) )
4. from a cmd window execute:
python tf.py
You will get:
b'Hello world'