Search code examples
tensorflowtensorboard

How do I install TensorFlow's tensorboard?


How do I install TensorFlow's tensorboard?


Solution

  • 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