Try installing a set of TensorFlow under Windows, due to the need for work. Just before the machine has been installed anaconda, can be directly through the Anaconda Navigator.
Launch Anaconda Navigator, go to Environment Settings page (environments)
2. Click the Create button under the root environment to create a new environment named TensorFlow (because the window version of TensorFlow does not support version 2.7 of Python, so choose the 3.5 version here)
3. After successful creation, search TensorFlow in TensorFlow environment, directly
4. After successful installation, open the Ipython in the TensorFlow environment
5. Enter the following test content in the startup Ipython:
Import TensorFlow as TFA = Tf.constant (3,name= ' input_a ') b = tf.constant (5,name= ' input_b ') c = tf.multiply (A,b,name= ' Compute ') Sess = tf. Session () x = Sess.run (c) print (x)
The results are as follows (the statements are explained in http://blog.51cto.com/abezoo/2047849, note the differences between the different versions):
TensorFlow in Windows installation and mini-test