1 | initial version |
One solution without deleting the file yourself is:
sage -ipython history clear
You may also just trim the history the last let's say 1000 commands, see documentation of sage -ipython history -h
.
2 | No.2 Revision |
One solution without deleting which avoids touching the history.sqlite
file yourself is:
sage -ipython history clear
You may also just trim the history the last let's say 1000 commands, see documentation of sage -ipython history -h
.
3 | No.3 Revision |
One solution which avoids touching the is:history.sqlite
file yourself
sage -ipython history clear
You may also just trim the history to keep only the last let's say 1000 commands, commands with sage -ipython history trim
, see documentation of sage -ipython history -h
.