try with JupyterLab's start file

This commit is contained in:
Steven Silvester 2021-12-09 15:13:32 -06:00
parent 6b22e2965d
commit 91bd2760cf

10
binder/start Executable file
View File

@ -0,0 +1,10 @@
#!/usr/bin/env python3
import sys
import shutil
import os
argv = sys.argv[1:]
print(argv)
os.execv(shutil.which(argv[0]), argv)