2016-11-17 23:05:12 UTC
4.35 GB
9.0.1
PYTHON_RELEASE2.7.12
PYTHON_VERSION2.7.12
[#000] sha256:9c7f9c7d9bc2915388ecc5d08e89a7583658285469d7325281f95d8ee279cc60 - 79.94% (3.48 GB)
[#001] sha256:d33fff6043a134da85e10360f9932543f1dfc0c3a22e1edd062aa9b088a86c5b - 18.8% (838 MB)
[#002] sha256:f24cd6bb1240a6a8641fa44a4bbea3e59d3729b9e1513ca48370c4576b6fddea - 0.0% (1.19 KB)
[#003] sha256:26c05bd41eb02c289507dbda413c65dc16db5e1e7ec9c9de2181c2487e314604 - 0.0% (1.19 KB)
[#004] sha256:94e90edd3994760244edd8dfc13d4c2c1e9bdecca37e66202aae581f1635338d - 0.0% (1.19 KB)
[#005] sha256:e5f573244c21dcfcfd1bef8e37e5f036456d035fcbe35c8e554295e01e53bb51 - 0.0% (1.19 KB)
[#006] sha256:c1dce746df10a8d343625f7e20997312ee6d09a065def0f139a59166ba2b4251 - 1.03% (45.9 MB)
[#007] sha256:235aebe15e2e66259044bf519cacc1ac06e07a40a83b0aaa419dff9c0a68071c - 0.23% (10.4 MB)
[#008] sha256:ae5bc0f60a307ab20a2291250b7548daeeac53bb4ce87ce3eac41b1907bdae89 - 0.0% (1.18 KB)
powershell -Command $ErrorActionPreference = 'Stop'; #(nop) SHELL [powershell -Command $ErrorActionPreference = 'Stop';]
2016-11-15 00:41:17 UTCpowershell -Command $ErrorActionPreference = 'Stop'; #(nop) ENV PYTHON_VERSION=2.7.12
2016-11-15 00:41:21 UTCpowershell -Command $ErrorActionPreference = 'Stop'; #(nop) ENV PYTHON_RELEASE=2.7.12
2016-11-17 23:01:23 UTCpowershell -Command $ErrorActionPreference = 'Stop'; #(nop) ENV PYTHON_PIP_VERSION=9.0.1
2016-11-17 23:04:40 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $url = ('https://www.python.org/ftp/python/{0}/python-{1}.amd64.msi' -f $env:PYTHON_RELEASE, $env:PYTHON_VERSION); Write-Host ('Downloading {0} ...' -f $url); (New-Object System.Net.WebClient).DownloadFile($url, 'python.msi'); Write-Host 'Installing ...'; Start-Process msiexec -Wait -ArgumentList @( '/i', 'python.msi', '/quiet', '/qn', 'TARGETDIR=C:\Python', 'ALLUSERS=1', 'ADDLOCAL=DefaultFeature,Extensions,TclTk,Tools,PrependPath' ); $env:PATH = [Environment]::GetEnvironmentVariable('PATH', [EnvironmentVariableTarget]::Machine); Write-Host 'Verifying install ...'; Write-Host ' python --version'; python --version; Write-Host 'Removing ...'; Remove-Item python.msi -Force; $pipInstall = ('pip=={0}' -f $env:PYTHON_PIP_VERSION); Write-Host ('Installing {0} ...' -f $pipInstall); (New-Object System.Net.WebClient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', 'get-pip.py'); python get-pip.py $pipInstall; Remove-Item get-pip.py -Force; Write-Host 'Verifying pip install ...'; pip --version; Write-Host 'Complete.';
2016-11-17 23:05:09 UTCpowershell -Command $ErrorActionPreference = 'Stop'; pip install --no-cache-dir virtualenv
2016-11-17 23:05:12 UTCpowershell -Command $ErrorActionPreference = 'Stop'; #(nop) CMD ["python"]