Files
Thesis/bin/jupyter-run

9 lines
260 B
Python
Executable File

#!/home/zin/projects/Thesis/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from jupyter_client.runapp import RunApp
if __name__ == "__main__":
sys.argv[0] = re.sub(r"(-script\.pyw|\.exe)?$", "", sys.argv[0])
sys.exit(RunApp.launch_instance())