We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0aa9628 commit bc42596Copy full SHA for bc42596
1 file changed
make.py
@@ -540,6 +540,10 @@ def _create_launchers(self):
540
command='$SYSDIR\cmd.exe',
541
args=r'/k winipython_notebook.bat')
542
543
+ self.create_launcher('Jupyter Lab.exe', 'jupyter.ico',
544
+ command='$SYSDIR\cmd.exe',
545
+ args=r'/k winjupyter_lab.bat')
546
+
547
self._print_done()
548
549
def _create_batch_scripts_initial(self):
@@ -970,6 +974,12 @@ def _create_batch_scripts(self):
970
974
call "%~dp0env_for_icons.bat"
971
975
cd/D "%WINPYWORKDIR%"
972
976
"%WINPYDIR%\scripts\jupyter-notebook.exe" %*
977
+""")
978
979
+ self.create_batch_script('winjupyter_lab.bat',r"""@echo off
980
+call "%~dp0env_for_icons.bat"
981
+cd/D "%WINPYWORKDIR%"
982
+"%WINPYDIR%\scripts\jupyter-lab.exe" %*
973
983
""")
984
985
self.create_batch_script('qtconsole.bat',r"""@echo off
0 commit comments