How do I install TensorFlow's tensorboard?
问题 How do I install TensorFlow's tensorboard? 回答1: 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 回答2: Try typing which tensorboard in your terminal. It should exist if you installed with pip as mentioned in the tensorboard README