##// END OF EJS Templates
use start_ipython in entry points...
MinRK -
Show More
@@ -2,6 +2,5 b''
2 2 """Terminal-based IPython entry point.
3 3 """
4 4
5 from IPython.terminal.ipapp import launch_new_instance
6
7 launch_new_instance()
5 from IPython import start_ipython
6 start_ipython()
@@ -315,7 +315,7 b" def find_scripts(entry_points=False, suffix=''):"
315 315 """
316 316 if entry_points:
317 317 console_scripts = [s % suffix for s in [
318 'ipython%s = IPython.terminal.ipapp:launch_new_instance',
318 'ipython%s = IPython:start_ipython',
319 319 'pycolor%s = IPython.utils.PyColorize:main',
320 320 'ipcontroller%s = IPython.parallel.apps.ipcontrollerapp:launch_new_instance',
321 321 'ipengine%s = IPython.parallel.apps.ipengineapp:launch_new_instance',
General Comments 0
You need to be logged in to leave comments. Login now