school-computer-toolkit/bootstrap.ps1

21 lines
560 B
PowerShell
Raw Normal View History

2022-06-09 14:05:55 -04:00
$run_path = Get-Location
Push-Location C:/SWTools
2022-06-09 14:05:55 -04:00
if (Get-Command "./python/python.exe" -ErrorAction SilentlyContinue) {
echo "Python already installed."
} else {
if (Get-Command "./python.zip" -ErrorAction SilentlyContinue) {
} else {
curl "https://www.python.org/ftp/python/3.10.5/python-3.10.5-embed-amd64.zip" --output ./python.zip
}
if (Get-Command "./python" -ErrorAction SilentlyContinue) {
Remove-Item -Recurse -ErrorAction:Stop "./python"
}
tar -xf ./python.zip
}
./python/python.exe main.py $run_path