ModuleNotFoundError: No module named 'tensorboard'

WARNING:root:Limited tf.compat.v2.summary API due to missing TensorBoard installation. WARNING:root:Limited tf.compat.v2.summary API due to missing TensorBoard installation. WARNING:root:Limited tf.compat.v2.summary API due to missing TensorBoard installation. WARNING:root:Limited tf.compat.v2.summary API due to missing TensorBoard installation. WARNING:root:Limited tf.compat.v2.summary API due to missing TensorBoard installation. WARNING:root:Limited tf.compat.v2.summary API due to missing TensorBoard installation. WARNING:root:Limited tf.summary API due to missing TensorBoard installation. 

Not sure what the issue is here, here are my packages

enter image description here

And the others

enter image description here

Cuda toolkit is at 10.1.243

When I use

%load_ext tensorboard 

It returns

ModuleNotFoundError: No module named 'tensorboard'

2

2 Answers

Do pip install tensorboard this will solve your problem

this worked for me:

conda install -y -c conda-forge tensorboard 

btw if you are using pytorch it seems you need to install that yourself too although pytorch does not say it clearly in their tutorial (or at all).

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like