本文介绍了'tensorboard' 不被识别为内部或外部命令,的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
刚开始使用 Tensorflow,但我无法在我的 cmd 上使用 tensorboard 命令,它给出了错误命令
Just started using Tensorflow, but I am not able to use tensorboard command on my cmd, it gives the error command
C:\Users\tushar\PycharmProjects>tensorboard --logdir="NewTF"
'tensorboard' is not recognized as an internal or external command,
operable program or batch file.
我正在使用 window 10 并安装了 tensorboard 库/
I am using window 10 and have installed tensorboard library/
推荐答案
我在 tensorflow 1.5.0 和 windows10 上遇到了同样的问题.
I had the same problem for tensorflow 1.5.0 and windows10.
按照 张量文档(启动 TensorBoard"部分),您可以尝试:
python -m tensorboard.main --logdir=[PATH_TO_LOGDIR]
现在 tensorboard 对我来说正常工作了.
Now tensorboard is working properly for me.
这篇关于'tensorboard' 不被识别为内部或外部命令,的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!