-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Solution] 500 Internal Server Error due to tensorboard update #25
Comments
Its due to this PR tensorflow/tensorboard#3643 |
We fixed the serverside extension in the main branch https://github.com/InfuseAI/jupyter_tensorboard However, the frontend requests to the incorrect path after |
any update on this one? is it solved yet? |
I had to patch jupyter_tensorboard to run with tf 2.3.x: |
so how do I install it @drykovanov ? |
ping @drykovanov |
Hi @rragundez , you can just checkout the patched branch and |
Are the new patches going to be merged into this branch? |
For me it is working correctly using the following configuration (with TensorFlow 2.4.1 installed): # Keep compatibility with jupyterlab_tensorboard
# jupyterlab==2.2.9 < 3.x
pip install jupyterlab==2.2.9 jupyterlab_widgets ipywidgets
# Tensorboard
pip install tensorboard==2.4.1 tensorboard_plugin_profile jupyter-tensorboard==0.2.0 jupyter labextension install jupyterlab_tensorboard --no-build
jupyter lab clean
jupyter lab build
jupyter labextension list |
Some info redacted.
After some digging around, latest version of tensorboard does not have that attribute in error above: https://github.com/tensorflow/tensorboard/blob/master/tensorboard/backend/application.py
The latest one I saw was
tensorboard==2.2
https://github.com/tensorflow/tensorboard/blob/2.2/tensorboard/backend/application.py .
Simple solution would be to tell users to
pip install tensorboard==2.2
.The text was updated successfully, but these errors were encountered: