Skip to content

Instantly share code, notes, and snippets.

@ameya98
Last active September 6, 2020 08:34
Show Gist options
  • Save ameya98/1ebf30f46d862cb147564b5767e68401 to your computer and use it in GitHub Desktop.
Save ameya98/1ebf30f46d862cb147564b5767e68401 to your computer and use it in GitHub Desktop.
Google Colab: Install TensorBoard
# Run in a Google Colab cell, to install TensorBoard correctly.
# Remove all TensorBoard packages.
!pip list --format=freeze | grep tensorboard | xargs pip uninstall -y
# Install TensorBoard again.
!pip install -q tensorboard
# Load the TensorBoard extension!
%load_ext tensorboard
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment