From 8fe1bc7772da98d46748522c8e91428e30f06148 Mon Sep 17 00:00:00 2001 From: Ben Reaves Date: Sat, 3 Apr 2021 17:40:31 -0500 Subject: [PATCH] Added quick Windows installer --- install/windows.ps1 | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 install/windows.ps1 diff --git a/install/windows.ps1 b/install/windows.ps1 new file mode 100644 index 0000000..1d67a84 --- /dev/null +++ b/install/windows.ps1 @@ -0,0 +1,7 @@ +Invoke-WebRequest -Uri https://github.com/rbreaves/kinto/archive/refs/heads/master.zip -OutFile $env:USERPROFILE\Downloads\kinto.zip +Expand-Archive -LiteralPath "$env:USERPROFILE\Downloads\kinto.zip" -DestinationPath "$env:USERPROFILE\Downloads" -Force +Set-ExecutionPolicy Bypass -Scope Process -Force +iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex +choco install -y python3 +cd "$env:USERPROFILE\Downloads\kinto-master" +py .\setup.py \ No newline at end of file