You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I encountered an issue while trying to open a Jupyter Notebook file in the terminal. When attempting to open an .ipynb file, the following error message appears: File Load Error for file.ipynb: Unreadable Notebook: path_to_file NBFormatError('Unsupported nbformat version 5')
Has anyone else experienced this issue or found a solution?
The text was updated successfully, but these errors were encountered:
I've experienced this issue. This error is comes when jupyter processes an empty .ipynb file. If you make the file from the jupyter interface, it should not create a blank file and have something like this:
The temporary fix for this would be to change the nbformat and nbformat_minor values to what I have shown above. You can open it in notepad or whatever you use to edit text files. I think that nbformat needs to be able to process version 5 or the jupyter peripheral responsible for processing an initially empty file and generating the values for these keys needs to change to 4 and 5.
I encountered an issue while trying to open a Jupyter Notebook file in the terminal. When attempting to open an
.ipynb
file, the following error message appears:File Load Error for file.ipynb: Unreadable Notebook: path_to_file NBFormatError('Unsupported nbformat version 5')
Has anyone else experienced this issue or found a solution?
The text was updated successfully, but these errors were encountered: