How do I install TensorFlow's tensorboard?

前端 未结 13 1583
慢半拍i
慢半拍i 2020-12-24 05:25

How do I install TensorFlow\'s tensorboard?

13条回答
  •  我在风中等你
    2020-12-24 05:31

    If your Tensorflow install is located here:

    /usr/local/lib/python2.7/dist-packages/tensorflow
    

    then the python command to launch Tensorboard is:

    $ python /usr/local/lib/python2.7/dist-packages/tensorflow/tensorboard/tensorboard.py --logdir=/home/user/Documents/.../logdir
    

    The installation from pip allows you to use:

    $ tensorboard --logdir=/home/user/Documents/.../logdir
    

提交回复
热议问题