Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

'tensorboard' is not recognized as an internal or external command,

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.

I am using window 10 and have installed tensorboard library/

like image 861
TRex Avatar asked Dec 27 '17 03:12

TRex


People also ask

How do I install TensorBoard on Ubuntu?

Essentials of installing TensorBoard on ubuntu requires python to be installed on the system. And along with Python we need to have pip installed with which we can install TensorBoard. Ubuntu16. 04+ comes shipped with Python3+.

What port does TensorBoard use?

where the -p 6006 is the default port of TensorBoard.

How do I turn off TensorBoard?

CTRL + Z halts the on-going TensorBoard process.


1 Answers

I had the same problem for tensorflow 1.5.0 and windows10.

Following tensor documentation ("Launching TensorBoard" section), you can try:

python -m tensorboard.main --logdir=[PATH_TO_LOGDIR]

Now tensorboard is working properly for me.

like image 189
RoB Avatar answered Sep 19 '22 16:09

RoB