在win10下anaconda prompt下查看TensorFlow安装版本与安装路径

在这里插入图片描述
进入anaconda,激活你的TensorFlow安装环境
进入python解释器
导入TensorFlow module

import tensorflow as tf 

查看TensorFlow安装版本

tf.__version__

查看TensorFlow安装路径

tf.__path__

ps:__是两个短下划线。

发布了11 篇原创文章 · 获赞 4 · 访问量 423

猜你喜欢

转载自blog.csdn.net/baidu_39629638/article/details/105197827