commit 5163d5b1af6b197f447f2f3bf97c929d4bff238e Author: Jona Heitzer Date: Tue Oct 29 09:39:47 2024 +0100 Initial commit, simple setup script diff --git a/setup.ps1 b/setup.ps1 new file mode 100644 index 0000000..cdb387e --- /dev/null +++ b/setup.ps1 @@ -0,0 +1,5 @@ +# 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 \ No newline at end of file