TensorFlow comes prepackaged with TensorBoard, so it will already be installed. It runs as a locally served web application accessible via the browser at http://0.0.0.0:6006. Conveniently, there is no server-side code or configurations required.
Depending on where your paths are, you may be able to run it directly, as follows:
tensorboard --logdir=/tmp/tensorlogs
If your paths are not correct, you may need to prefix the application accordingly, as shown in the following command line:
tf_install_dir/ tensorflow/tensorboard --
logdir=/tmp/tensorlogs
On Linux, you can run it in the background and just let it keep running, as follows:
nohup tensorboard --logdir=/tmp/tensorlogs &
Some thought should be put into the directory structure though. The Runs list on the left side of the dashboard is driven by subdirectories in the logdir location. The following image...