5 lines
379 B
PowerShell
5 lines
379 B
PowerShell
# Download and unpack winpython standalone distro
|
|
Invoke-WebRequest -UseBasicParsing -OutFile winpy.exe -Uri https://github.com/winpython/winpython/releases/download/10.7.20240908final/Winpython64-3.12.6.0dot.exe
|
|
Start-Process -FilePath 'C:\Program Files\7-Zip\7z.exe' -ArgumentList "x", "./winpy.exe" -Wait -NoNewWindow -PassThru
|
|
|
|
# TODO: Automatically install python extensions |