Disable IPython Exit Confirmation
In ipython version 0.11 or higher,
- Run with
--no-confirm-exit
OR - Exit via 'exit' instead of control-D OR
Make sure the directory exists (or run
ipython profile create
to create it) and add these lines to $HOME/.ipython/profile_default/ipython_config.py:c = get_config() c.TerminalInteractiveShell.confirm_exit = False
If you also want Ctrl-D
to exit without confirmation, in IPython 0.11, add c.TerminalInteractiveShell.confirm_exit = False
to your config file *.
If you don't have a config file yet, run ipython profile create
to create one.
Note this ticket if you're working within the Django shell.
* The config file is located at: $HOME/.ipython/profile_default/ipython_config.py
just type Exit
, with capital E
.
Alternatively, start IPython with:
$ ipython -noconfirm_exit
Or for newer versions of IPython:
$ ipython --no-confirm-exit