0% found this document useful (0 votes)
26 views1 page

Disable Autosave

Uploaded by

radebp
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
26 views1 page

Disable Autosave

Uploaded by

radebp
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

Find the Jupyter configuration folder:

jupyter --config-dir

from jupyter_core.paths import jupyter_config_dir


jupyter_dir = jupyter_config_dir() # C:\users\<user_name>\.jupyter on my machine

create sub-folder custom, and create file custom.js within it:

i.e. 'C:\users\<user_name>\.jupyter\custom\custom.js'

Put the following line in custom.js:

IPython.notebook.set_autosave_interval(0);

Save file and restart the Jupyter Notebook.

When opening a notebook you should see "Autosave disabled" briefly appearing in the
right side of the menu bar:

You might also like