Files
skel/dotfiles/ipython.py
2019-03-27 22:46:06 -07:00

8 lines
173 B
Python

try:
import os, IPython
os.environ['PYTHONSTARTUP'] = '' # Prevent running this again
IPython.start_ipython()
raise SystemExit
except ImportError:
pass