mirror of
https://github.com/Matir/skel.git
synced 2026-05-26 05:29:09 -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
|