From 5163d5b1af6b197f447f2f3bf97c929d4bff238e Mon Sep 17 00:00:00 2001 From: Jona Heitzer Date: Tue, 29 Oct 2024 09:39:47 +0100 Subject: [PATCH] Initial commit, simple setup script --- setup.ps1 | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 setup.ps1 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