ModuleNotFoundError: No module named 'tensorflow.tensorboard.tensorboard'

Andriy Lazorenko picture Andriy Lazorenko · Jun 21, 2017 · Viewed 16.2k times · Source

There seems to be a problem with recent TensorFlow build. The TensorBoard visualization tool would not run when it is compiled from sources to use with GPU. The error is as follows:

$ tensorboard
Traceback (most recent call last):
  File "/home/gpu/anaconda3/envs/tensorflow/bin/tensorboard", line 7, in <module>
    from tensorflow.tensorboard.tensorboard import main
ModuleNotFoundError: No module named 'tensorflow.tensorboard.tensorboard'

Specs of system: Ubuntu 16.04, NVIDIA GTX 1070, cuda-8.0, cudnn 6.0. Installed using Bazel from sources as described here: https://www.tensorflow.org/install/install_sources

Installed into fresh anaconda3 environment 'tensorflow', environment is activated when performing command.

Would appreciate any help!

Answer

Adam Liu picture Adam Liu · Apr 15, 2018

An easy fix:

python -m tensorboard.main --logdir=/path/to/logs