jupyter / help

:sparkles: Need some help or have some questions? Please visit our Discourse page.
https://discourse.jupyter.org
291 stars 97 forks source link

How to shut down the"Autosave"? #446

Open lincolnboy opened 5 years ago

lincolnboy commented 5 years ago

How to shut down the the function of "Autosave" while using Jupyter?

It really makes me a lot of troubles.

thanks

minrk commented 5 years ago

in IPython, you can disable it by executing %autosave 0. in ~/.jupyter/custom/custom.js you can add:

require(['base/js/namespace'], function (Jupyter) {
  Jupyter.notebook.autosave_interval = 0;
});

to disable it by default.