Skip to content

Instantly share code, notes, and snippets.

@remram44
Created July 22, 2014 22:00
Show Gist options
  • Save remram44/4ea7e2bda9d8745c7af2 to your computer and use it in GitHub Desktop.
Save remram44/4ea7e2bda9d8745c7af2 to your computer and use it in GitHub Desktop.
ipython-script.py
#!C:\Python2.7\python.exe
# EASY-INSTALL-ENTRY-SCRIPT: 'ipython==2.1.0','console_scripts','ipython'
__requires__ = 'ipython==2.1.0'
import sys
from pkg_resources import load_entry_point
if __name__ == '__main__':
sys.exit(
load_entry_point('ipython==2.1.0', 'console_scripts', 'ipython')()
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment