I\'am new to plotly and I\'am having a problem with my plots when generating them inside jupyter notebooks.
Whenever I generate a plot, evrything works fine, but when I
The ploty team fixed the issue, here is the ticket
Upgrading nbformat, with either
pip install --upgrade nbformat
or
conda update nbformat
fixes it.
I got the same problem but the answer above didn't help me. I tried then conda update --all but this didn't help too.
Later I was given the link: https://gitmemory.com/issue/jupyter/nbformat/161/574959380. So, I opened ipynb file with text editor, replaced "nbformat_minor": 1 with "nbformat_minor": 4 and saved the file. After reloading the notebook the problem was fixed.
As in gerard's answer pip install --upgrade nbformat
solved the issue, however conda
(which I tried before pip
) didn't solve the issue.