You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
268 B

4 years ago
  1. #!/home/alpcentaur/ProjektA/PrototypeWebApp/venv/bin/python3.5
  2. # -*- coding: utf-8 -*-
  3. import re
  4. import sys
  5. from IPython import start_ipython
  6. if __name__ == '__main__':
  7. sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
  8. sys.exit(start_ipython())