Hands free python setup on windows

Windows does not have package manager. Not sure why is that since Windows Marketplace is here since 2004… but that’s another story. So for silent/unattended python install you have to stick to scripting a little bit, but thanks to Powershell it’s quite simple. (new-object System.Net.WebClient).DownloadFile(„https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi”, „$pwd\python-2.7.6.msi”); msiexec /i python-2.7.6.msi TARGETDIR=C:\Python27 …

Back to Top