ModuleNotFoundError: no module named "tensorflow.tensorboard.tensorboard"

The problem seems to be related to the recent build of TensorFlow. The TensorBoard visualization tool did not start if it was compiled from sources for use with the 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'

System Features: 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 in the new anaconda3 tensorflow environment, the environment is activated when the command is executed.

Would thank for any help!

+6
2

, , , tenorflower github.

, . , , ( ).

tensorboard tensorflow/bin (/home/gpu/anaconda3/envs/tensorflow/bin/tensorboard )

from tensorflow.tensorboard.tensorboard import main

from tensorflow.tensorboard.main import *

, .

+1

Tensorboard . tensorboard, . tensorboard.py .

tensorboard.py tensorbard, . :

python tensorboard.py --logdir=path
0

All Articles