Lusian
Lusian

Reputation: 653

Jupiter notebook stuck

I am trying to open a Jupyter notebook I have done, but since when I uploaded a huge dataframe it is stuck like this:

enter image description here

I don't know what to do actually. I have tried to ctrl+C (force quit) jupyter and restart it again several times. I have an important code there. Is there a way to recover it or open the page? I know it's not very much info. This notebook is stored in an anaconda environment and for the moment I did nothing but trying to open it....it looks like jupyter is very slow down.

EDIT: it looks like it is very memory expensive... enter image description here

Thank you,

Federico

Upvotes: 0

Views: 349

Answers (1)

ForceBru
ForceBru

Reputation: 44848

Jupyter notebooks are actually JSON files, so you can open them with plain text editors. Presumably, your browser is having a hard time rendering the notebook - opening it in a text editor won't render anything at all, so you should be able to read the code.

This will allow you to back up the code of the notebook.

Upvotes: 1

Related Questions