tensorboard: command not found

前端 未结 5 1357
温柔的废话
温柔的废话 2021-02-05 05:22

I installed TensorFlow on my MacBook Pro 10.12.5 from source code by steps described here. https://www.tensorflow.org/install/install_sources

TensorFlow itself works wel

5条回答
  •  遥遥无期
    2021-02-05 05:56

    You could call tensorboard as a python module like this:

    python3 -m tensorboard.main --logdir=~/my/training/dir
    

    or add this to your .profile

    alias tensorboard='python3 -m tensorboard.main'

提交回复
热议问题