查看已安装的tensorflow版本及路径

打开Anaconda Prompt

环境激活:

activate tensorflow

进入python环境:

python

输入以下代码:

import tensorflow as tf

版本查看:

tf.__version__

路径查看:

tf.__path__

猜你喜欢

转载自blog.csdn.net/qq_41904729/article/details/102377726