Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I install TensorFlow's tensorboard?

How do I install TensorFlow's tensorboard?

like image 904
Alex_M Avatar asked Nov 10 '15 15:11

Alex_M


People also ask

How do I install the latest version of TensorBoard?

For Windows users, cd into pathShownByPip\tensorboard and run python main.py from there. For Python 3. x, use pip3 instead of pip , and don't forget to use python3 in the alias. Show activity on this post.

Can you install TensorBoard without TensorFlow?

Note: Having TensorFlow installed is not a prerequisite to running TensorBoard, although it is a product of the TensorFlow ecosystem, TensorBoard by itself can be used with PyTorch.


1 Answers

The steps to install Tensorflow are here: https://www.tensorflow.org/install/

For example, on Linux for CPU-only (no GPU), you would type this command:

pip install -U pip pip install tensorflow 

Since TensorFlow depends on TensorBoard, running the following command should not be necessary:

pip install tensorboard 
like image 149
Mike Harris Avatar answered Sep 29 '22 17:09

Mike Harris