欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Windows10 Python3 pip安装tensorflow方法

程序员文章站 2022-03-03 16:56:30
...

直接使用TensorFlow官网的pip安装方法

https://www.tensorflow.org/install/pip

非虚拟环境安装

pip3 install --user --upgrade tensorflow  # install in $HOME

jupyter中验证安装效果

# Python
import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
print(sess.run(hello))
相关标签: TensorFlow