Last active
September 6, 2020 08:34
-
-
Save ameya98/1ebf30f46d862cb147564b5767e68401 to your computer and use it in GitHub Desktop.
Google Colab: Install TensorBoard
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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