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

TRex picture TRex · Dec 27, 2017 · Viewed 16.3k times · Source

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/

Answer

RoB picture RoB · Feb 5, 2018

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.