##// END OF EJS Templates
Fixing zero-install ipython.py script.
Brian Granger -
Show More
@@ -1,11 +1,12 b''
1 1 #!/usr/bin/env python
2 2 # -*- coding: utf-8 -*-
3 3 """IPython -- An enhanced Interactive Python
4 4
5 5 The actual ipython script to be installed with 'python setup.py install' is
6 6 in './scripts' directory. This file is here (ipython source root directory)
7 7 to facilitate non-root 'zero-installation' (just copy the source tree
8 8 somewhere and run ipython.py) and development. """
9 9
10 import IPython.core.shell
11 IPython.core.shell.start().mainloop()
10 from IPython.core.ipapp import launch_new_instance
11
12 launch_new_instance()
General Comments 0
You need to be logged in to leave comments. Login now