Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion portable/launchers_final/scripts/winidle.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@echo off
call "%~dp0env_for_icons.bat" %*
"%WINPYDIR%\python.exe" "%WINPYDIR%\Lib\idlelib\idle.pyw" %*
rem "%WINPYDIR%\python.exe" "%WINPYDIR%\Lib\idlelib\idle.pyw" %*
"%WINPYDIR%\python.exe" -m idlelib %*
3 changes: 2 additions & 1 deletion portable/launchers_final/scripts/winipython_notebook.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@echo off
call "%~dp0env_for_icons.bat" %*
"%WINPYDIR%\scripts\jupyter-notebook.exe" %*
rem "%WINPYDIR%\scripts\jupyter-notebook.exe" %*
"%WINPYDIR%\python.exe" -m jupyter notebook %*
3 changes: 2 additions & 1 deletion portable/launchers_final/scripts/winjupyter_lab.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@echo off
call "%~dp0env_for_icons.bat" %*
"%WINPYDIR%\scripts\jupyter-lab.exe" %*
rem "%WINPYDIR%\scripts\jupyter-lab.exe" %*
"%WINPYDIR%\python.exe" -m jupyter lab %*
4 changes: 2 additions & 2 deletions portable/launchers_final/scripts/winpython.bat
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@echo off
call "%~dp0env_for_icons.bat" %*
rem backward compatibility for non-ptpython users
if exist "%WINPYDIR%\scripts\ptpython.exe" (
"%WINPYDIR%\scripts\ptpython.exe" %*
if exist "%WINPYDIR%\Lib\site-packages\ptpython" (
"%WINPYDIR%\python.exe" -m ptpython %*
) else (
"%WINPYDIR%\python.exe" %*
)
3 changes: 2 additions & 1 deletion portable/launchers_final/scripts/wpcp.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@echo off
call "%~dp0env_for_icons.bat" %*
cmd.exe /k "echo wppm & wppm %*"
rem cmd.exe /k "echo wppm & wppm" %*
cmd.exe /k "echo wppm & python -m wppm" %*