已经安装tensorflow但是运行失败,明明安装了tensorflow
Tensorflow装置(anaconda,tensorflow2)
Anaconda提示
首先,我参考这篇文章。
https://blog.51cto.com/u_15080029/2642930
执行conda create-name tf2.0 python=3.7构建一个名为TF 2.0的虚拟环境,(一开始打算装2.0版本,中途改了,创建的虚拟环境懒得改名字)
成功建立进入tf2.0的环境:康达激活tf2.0
Tensorflow 2.0已安装:pip install tensor flow==2 . 0 . 0-beta 1
但是这里失败了,改安装了tensorflow2.1.0。
参考这个https://blog.csdn.net/qq_38316655/article/details/105435246.
虚拟环境中的Tf2.0:
pip安装-I https://pypi.tuna.tsinghua.edu.cn/simple-U张量流
测试:首先在tf2.0的环境下安装一个jupyter。
在tf2.0的环境下,pip3安装jupyter笔记本。
成功安装后执行jupyter笔记本。
浏览器将打开jupyter界面,创建一个新的python3文件,并输入以下内容:
将张量流作为tf导入
A=tf.constant([[1,2],[3,4]])
B=tf.constant([[5,6],[7,8]])
C=tf.matmul(A,B)
打印
显示:tf。张量(
[[19 22]
[43 50]],shape=(2,2),dtype=int32)
成功