TensorFlow学习:windows平台下TensorFlow环境的搭建

参考:

blog.csdn.net/hola_f/article/details/70482300

1、事先下载好PYTHON

2、打开cmd,输入Python,出现Python的版本信息就说明Python安装成功了

3、安装TensorFlow

我装的是cpu版本的TensorFlow

以管理员方式打开CMD,运行以下代码,进行一键安装:

pip install –upgrade –ignore-installed tensorflow

4、测试TensorFlow是否安装成功

在cmd输入如下代码:

python

importtensorflow as tf

hello=tf.constant(“Hello!”)

sess=tf.Session()

print(sess.run(hello))

程序输出 Hello! 则表示TensorFlow安装成功。

5、出现错误Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX2

# Just disables the warning, doesn’t enable AVX/FMA

import os

os.environ[‘TF_CPP_MIN_LOG_LEVEL’] = ‘2’

执行上方代码忽略即可!!!

    原文作者:暖倾心
    原文地址: https://www.jianshu.com/p/a75a28ac0116
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞