mirror of
https://github.com/Matir/skel.git
synced 2026-06-09 19:03:41 -07:00
8 lines
173 B
Python
8 lines
173 B
Python
try:
|
|
import os, IPython
|
|
os.environ['PYTHONSTARTUP'] = '' # Prevent running this again
|
|
IPython.start_ipython()
|
|
raise SystemExit
|
|
except ImportError:
|
|
pass
|