Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions make.py
Original file line number Diff line number Diff line change
Expand Up @@ -540,6 +540,10 @@ def _create_launchers(self):
command='$SYSDIR\cmd.exe',
args=r'/k winipython_notebook.bat')

self.create_launcher('Jupyter Lab.exe', 'jupyter.ico',
command='$SYSDIR\cmd.exe',
args=r'/k winjupyter_lab.bat')

self._print_done()

def _create_batch_scripts_initial(self):
Expand Down Expand Up @@ -970,6 +974,12 @@ def _create_batch_scripts(self):
call "%~dp0env_for_icons.bat"
cd/D "%WINPYWORKDIR%"
"%WINPYDIR%\scripts\jupyter-notebook.exe" %*
""")

self.create_batch_script('winjupyter_lab.bat',r"""@echo off
call "%~dp0env_for_icons.bat"
cd/D "%WINPYWORKDIR%"
"%WINPYDIR%\scripts\jupyter-lab.exe" %*
""")

self.create_batch_script('qtconsole.bat',r"""@echo off
Expand Down