2024-09-04 05:58:49 UTC
2.05 GB
UTF-8
PYTHON_GET_PIP_SHA256bc37786ec99618416cc0a0ca32833da447f4d91ab51d2c138dd15b7af21e8e9a
PYTHON_GET_PIP_URLhttps://github.com/pypa/get-pip/raw/def4aec84b261b939137dd1c69eff0aabb4a7bf4/public/get-pip.py
PYTHON_PIP_VERSION24.1.1
PYTHON_VERSION3.13.0rc1
[#000] sha256:7c76e5cf7755ce357ffb737715b0da6799a50ea468cc252c094f4d915d426b3f - 63.16% (1.29 GB)
[#001] sha256:dcd649075383e8df03ea713dfe59e1205716fbaa14450c10ef0d0a24a7b63669 - 34.26% (718 MB)
[#002] sha256:fea357a6cce32fde3fc035adea612cda41cd946463172c887465554627f00c55 - 0.0% (1.25 KB)
[#003] sha256:8364e6966c53220fc9a3d167e93b651d8e774e98e90d1880ebc9195f37e36c26 - 0.0% (1.26 KB)
[#004] sha256:0196006300e9c4d707c7ebb2c27a00a75f088e66c98552567ed910dd29345d4e - 0.0% (1.26 KB)
[#005] sha256:fb15cca78d72550e188c6fb1daf8bfd0511116b05a8ce4819e75e5fe33fdaa30 - 2.13% (44.7 MB)
[#006] sha256:489a9d4d08144903014ce3fdfe4c96a81f2280de78d5b5aba6e2d93a6c1eec97 - 0.0% (1.25 KB)
[#007] sha256:50e326eaa84d61c34cfc6404b47285e580eb5b59bd73c3ae8cfea0b9e0f81938 - 0.0% (1.25 KB)
[#008] sha256:9e99334e1059ea9734728b66001be869a0eb026f26e3e4fd7d7bb59367708854 - 0.0% (1.26 KB)
[#009] sha256:94f40ccce3ea3b84512480965be182496e0e892c72361045d7c46d306d29ae6e - 0.46% (9.55 MB)
[#010] sha256:d60a36959aa28e27ca4892da441104f3de3839dda0febc47ab6e3c0b1a051bdf - 0.0% (1.26 KB)
Apply image 10.0.20348.1787
2024-08-10 19:49:59 UTCInstall update 10.0.20348.2655
2024-09-04 05:57:46 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) SHELL [powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';]
2024-09-04 05:57:46 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHONIOENCODING=UTF-8
2024-09-04 05:57:47 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHON_VERSION=3.13.0rc1
2024-09-04 05:58:31 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $url = ('https://www.python.org/ftp/python/{0}/python-{1}-amd64.exe' -f ($env:PYTHON_VERSION -replace '[a-z]+[0-9]*$', ''), $env:PYTHON_VERSION); Write-Host ('Downloading {0} ...' -f $url); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -Uri $url -OutFile 'python.exe'; Write-Host 'Installing ...'; $exitCode = (Start-Process python.exe -Wait -NoNewWindow -PassThru -ArgumentList @( '/quiet', 'InstallAllUsers=1', 'TargetDir=C:\Python', 'PrependPath=1', 'Shortcuts=0', 'Include_doc=0', 'Include_pip=0', 'Include_test=0' ) ).ExitCode; if ($exitCode -ne 0) { Write-Host ('Running python installer failed with exit code: {0}' -f $exitCode); Get-ChildItem $env:TEMP | Sort-Object -Descending -Property LastWriteTime | Select-Object -First 1 | Get-Content; exit $exitCode; } $env:PATH = [Environment]::GetEnvironmentVariable('PATH', [EnvironmentVariableTarget]::Machine); Write-Host 'Verifying install ...'; Write-Host ' python --version'; python --version; Write-Host 'Removing ...'; Remove-Item python.exe -Force; Remove-Item $env:TEMP/Python*.log -Force; Write-Host 'Complete.'
2024-09-04 05:58:32 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHON_PIP_VERSION=24.1.1
2024-09-04 05:58:32 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/def4aec84b261b939137dd1c69eff0aabb4a7bf4/public/get-pip.py
2024-09-04 05:58:33 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHON_GET_PIP_SHA256=bc37786ec99618416cc0a0ca32833da447f4d91ab51d2c138dd15b7af21e8e9a
2024-09-04 05:58:48 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; Write-Host ('Downloading get-pip.py ({0}) ...' -f $env:PYTHON_GET_PIP_URL); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -Uri $env:PYTHON_GET_PIP_URL -OutFile 'get-pip.py'; Write-Host ('Verifying sha256 ({0}) ...' -f $env:PYTHON_GET_PIP_SHA256); if ((Get-FileHash 'get-pip.py' -Algorithm sha256).Hash -ne $env:PYTHON_GET_PIP_SHA256) { Write-Host 'FAILED!'; exit 1; }; $env:PYTHONDONTWRITEBYTECODE = '1'; Write-Host ('Installing pip=={0} ...' -f $env:PYTHON_PIP_VERSION); python get-pip.py --disable-pip-version-check --no-cache-dir --no-compile ('pip=={0}' -f $env:PYTHON_PIP_VERSION) --no-setuptools --no-wheel ; Remove-Item get-pip.py -Force; Write-Host 'Verifying pip install ...'; pip --version; Write-Host 'Complete.'
2024-09-04 05:58:49 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) CMD ["python"]
2024-09-04 05:59:24 UTC
2.14 GB
UTF-8
PYTHON_GET_PIP_SHA256bc37786ec99618416cc0a0ca32833da447f4d91ab51d2c138dd15b7af21e8e9a
PYTHON_GET_PIP_URLhttps://github.com/pypa/get-pip/raw/def4aec84b261b939137dd1c69eff0aabb4a7bf4/public/get-pip.py
PYTHON_PIP_VERSION24.1.1
PYTHON_VERSION3.13.0rc1
[#000] sha256:c9226d61d3bdbf9f09821b32f5878623b8daaa5fb4f875cb63c199f87a26d57e - 71.75% (1.54 GB)
[#001] sha256:579bd4d5f7fd8737f66e40b29aafedee32d589107027d75796993c8898e3e7dd - 25.84% (567 MB)
[#002] sha256:7c9c5286e44cfa07d6deaa8effa6eda7e8b67cd53139ec06229c55541de424e5 - 0.0% (1.25 KB)
[#003] sha256:6509f3661ce1b66d5bc5cd470c7d9359ea986dcc400b8cdbb95825269b458ea3 - 0.0% (1.27 KB)
[#004] sha256:89968275943ad8a83f423ca459aea4eb286735257f54e5bcabe5bfb26dd7bdc1 - 0.0% (1.26 KB)
[#005] sha256:e498a23656dfde607c0c5dc26162239edc578a4fc45aa5983e97aea1319075c8 - 2.04% (44.8 MB)
[#006] sha256:8dd4997ffe4a51a6b933e4a9ecd3fb0106fbabbf12aa2b1640e143ab42d9d246 - 0.0% (1.27 KB)
[#007] sha256:f18e1f6e067d9dfbbd43ff94e3d5158542ae8624a6e8d9914859699da054be82 - 0.0% (1.27 KB)
[#008] sha256:6b02d67b898cbc09b7d06d8b267f4504af77ede0774fd4acf2e54928d7dbe25b - 0.0% (1.27 KB)
[#009] sha256:c3d316be811dd04c00e8f4887d2baf64ce3f7c2e7a1019a614c326f6c07597c1 - 0.37% (8.01 MB)
[#010] sha256:48a422712bb6fd0c517ad9130e3699307530591a45a01133e48d0be29471ad40 - 0.0% (1.33 KB)
Apply image 10.0.17763.4499
2024-08-11 07:11:31 UTCInstall update 10.0.17763.6189
2024-09-04 05:57:46 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) SHELL [powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';]
2024-09-04 05:57:47 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHONIOENCODING=UTF-8
2024-09-04 05:57:48 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHON_VERSION=3.13.0rc1
2024-09-04 05:58:53 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $url = ('https://www.python.org/ftp/python/{0}/python-{1}-amd64.exe' -f ($env:PYTHON_VERSION -replace '[a-z]+[0-9]*$', ''), $env:PYTHON_VERSION); Write-Host ('Downloading {0} ...' -f $url); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -Uri $url -OutFile 'python.exe'; Write-Host 'Installing ...'; $exitCode = (Start-Process python.exe -Wait -NoNewWindow -PassThru -ArgumentList @( '/quiet', 'InstallAllUsers=1', 'TargetDir=C:\Python', 'PrependPath=1', 'Shortcuts=0', 'Include_doc=0', 'Include_pip=0', 'Include_test=0' ) ).ExitCode; if ($exitCode -ne 0) { Write-Host ('Running python installer failed with exit code: {0}' -f $exitCode); Get-ChildItem $env:TEMP | Sort-Object -Descending -Property LastWriteTime | Select-Object -First 1 | Get-Content; exit $exitCode; } $env:PATH = [Environment]::GetEnvironmentVariable('PATH', [EnvironmentVariableTarget]::Machine); Write-Host 'Verifying install ...'; Write-Host ' python --version'; python --version; Write-Host 'Removing ...'; Remove-Item python.exe -Force; Remove-Item $env:TEMP/Python*.log -Force; Write-Host 'Complete.'
2024-09-04 05:58:54 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHON_PIP_VERSION=24.1.1
2024-09-04 05:58:55 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/def4aec84b261b939137dd1c69eff0aabb4a7bf4/public/get-pip.py
2024-09-04 05:58:55 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHON_GET_PIP_SHA256=bc37786ec99618416cc0a0ca32833da447f4d91ab51d2c138dd15b7af21e8e9a
2024-09-04 05:59:23 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; Write-Host ('Downloading get-pip.py ({0}) ...' -f $env:PYTHON_GET_PIP_URL); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -Uri $env:PYTHON_GET_PIP_URL -OutFile 'get-pip.py'; Write-Host ('Verifying sha256 ({0}) ...' -f $env:PYTHON_GET_PIP_SHA256); if ((Get-FileHash 'get-pip.py' -Algorithm sha256).Hash -ne $env:PYTHON_GET_PIP_SHA256) { Write-Host 'FAILED!'; exit 1; }; $env:PYTHONDONTWRITEBYTECODE = '1'; Write-Host ('Installing pip=={0} ...' -f $env:PYTHON_PIP_VERSION); python get-pip.py --disable-pip-version-check --no-cache-dir --no-compile ('pip=={0}' -f $env:PYTHON_PIP_VERSION) --no-setuptools --no-wheel ; Remove-Item get-pip.py -Force; Write-Host 'Verifying pip install ...'; pip --version; Write-Host 'Complete.'
2024-09-04 05:59:24 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) CMD ["python"]
Please be careful as this will not just delete the reference but also the actual content!
For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.