I use Jupyter Notebook to write Python 2 code. I call it like:
c:\python27\scripts\jupyter-notebook --no-browser
At the same time, I am using the IPython console launched with
c:\python27\scripts\ipython
The problem is that the Jupyter story is saved and mixed with the IPython story. I don't need the Jupyter Notebook story at all - is there a way to disable it while keeping the IPython ** history?
Platform: win32
Update:
I tried using the suggested digest setting method. But when I enter the configuration "c.Session.digest_history_size = 0", restart the laptop, write "print" next test "in some cell, restart the separate IPython, and after clicking the first thing I get, it is" print "next test "".
How can I get rid of it?
source
share