8 lines
273 B
Python
Executable File
8 lines
273 B
Python
Executable File
#!/Users/jariancottingham/Projects/redhead/bin/python3.13
|
|
import sys
|
|
from jupyter_client.kernelspecapp import KernelSpecApp
|
|
if __name__ == '__main__':
|
|
if sys.argv[0].endswith('.exe'):
|
|
sys.argv[0] = sys.argv[0][:-4]
|
|
sys.exit(KernelSpecApp.launch_instance())
|