diff --git a/IPython/scripts/ipython b/IPython/scripts/ipython new file mode 100755 index 0000000..20095a8 --- /dev/null +++ b/IPython/scripts/ipython @@ -0,0 +1,10 @@ +#!/usr/bin/env python +"""Terminal-based IPython entry point. + +Note: this is identical to IPython/frontend/terminal/scripts/ipython for now. +Once 0.11 is closer to release, we will likely need to reorganize the script +entry points.""" + +from IPython.frontend.terminal.ipapp import launch_new_instance + +launch_new_instance()