"wrappers/vscode:/vscode.git/clone" did not exist on "d39325d34295b9f3ee453338ac2b043563231f60"
install_python.ps1 1.18 KB
Newer Older
1
2
3
4
5
6
7
8
9
# Install specified Python version.
# Install only if:
#    Our current matrix entry uses this Python version AND
#    Python version is not already available.

$py_exe = "${env:PYTHON}\Python.exe"
if ( [System.IO.File]::Exists($py_exe) ) {
    exit 0
}
10
$req_nodot = $env:PYTHON -replace '\D+Python(\d+(?:rc\d+))(?:-x64)?','$1'
11
$req_ver = $req_nodot -replace '(\d)(\d+)','$1.$2.0'
12
$req_dir = $req_nodot -replace '(\d)(\d+)(.*)','$1.$2.0'
13
14
15
16
17
18
19
20
21
22
23
24

if ($env:PYTHON -eq "C:\Python${req_nodot}-x64") {
    $exe_suffix="-amd64"
} elseif ($env:PYTHON -eq "C:\Python${req_nodot}") {
    $exe_suffix=""
} else {
    exit 0
}

$py_url = "https://www.python.org/ftp/python"
Write-Host "Installing Python ${req_ver}$exe_suffix..." -ForegroundColor Cyan
$exePath = "$env:TEMP\python-${req_ver}${exe_suffix}.exe"
25
$downloadFile = "$py_url/${req_dir}/python-${req_ver}${exe_suffix}.exe"
26

27
28
29
30
31
32
33
Write-Host "Downloading $downloadFile..."
(New-Object Net.WebClient).DownloadFile($downloadFile, $exePath)
Write-Host "Installing..."
cmd /c start /wait $exePath /quiet TargetDir="$env:PYTHON" Shortcuts=0 Include_launcher=0 InstallLauncherAllUsers=0
Write-Host "Python ${req_ver} installed to $env:PYTHON"

echo "$(& $py_exe --version 2> $null)"