jupyter_tensorboard
jupyter_tensorboard copied to clipboard
unable to launch tensorboard
I tried this image to run container :
docker pull lspvic/tensorboard-notebook
docker run -it --rm -p 8888:8888 lspvic/tensorboard-notebook
but when I open the jupyter tree and try to open tensorboard it gives :
Jupyter tensorboard extension error Check that tensorflow(-gpu)>=1.3 is installed. Check that jupyter, tensorflow and jupyter_tensorboard have the same python version. Check that jupyter_tensorboard is installed via pip list. If you want uninstall this extension, run jupyter nbextension disable jupyter_tensorboard/tree --user and jupyter nbextension uninstall jupyter_tensorboard --user; Copy your browser console logs to submit a new issue in https://github.com/lspvic/jupyter_tensorboar
while on terminal it shows :
404 POST /api/tensorboard (172.17.0.1) 2.29ms referer=http://localhost:8888/tree
I'm having the same issue, with the same error.
Same error. Could this be a pip issue? I know pip 10.0 just came out.
I'm having the same issue, with the same error.
Same error.
@lspvic Please provide a solution for this error
Was able to launch tensorboard without error at the very beginning, then this error happened someday suddenly and can't get rid of it...
I found the error comes from "TypeError: init() got an unexpected keyword argument 'serialized_options'" when launching jupyter notebook. And here is my way to solve it:
pip install -U protobuf (https://github.com/tensorflow/models/issues/3995#issuecomment-400183986).