mirror of
https://github.com/Matir/skel.git
synced 2026-05-25 21:19:09 -07:00
11 lines
292 B
Python
11 lines
292 B
Python
try:
|
|
import os, IPython
|
|
from traitlets import config
|
|
os.environ['PYTHONSTARTUP'] = '' # Prevent running this again
|
|
cfg = config.Config()
|
|
cfg.TerminalIPythonApp.display_banner = False
|
|
IPython.start_ipython(config=cfg)
|
|
raise SystemExit
|
|
except ImportError:
|
|
pass
|