# Python : IPython \[ [pypi](https://pypi.org/project/ipython/) | [src](https://github.com/ipython/ipython/) | [docs](https://ipython.readthedocs.io/en/stable/) ] #### Profile Tree Stored in `~/.ipython` unless env var `IPYTHONDIR` is set or `--ipython-dir` is [[Tech/Python/Core/CLI#IPYTHONDIR|used]]. ``` <dir> └── profile_default ├── ipython_config.py ├── log ├── pid ├── security └── startup └── README ``` ###### ipython_config.py ```python c.TerminalInteractiveShell.confirm_exit = False # recommended ```