Skip to content

Instantly share code, notes, and snippets.

@skyline75489
Last active January 13, 2021 09:02
Show Gist options
  • Save skyline75489/35a6591e6e4130d5f30764db9bf2b4ab to your computer and use it in GitHub Desktop.
Save skyline75489/35a6591e6e4130d5f30764db9bf2b4ab to your computer and use it in GitHub Desktop.
Basic Python Environment For Windows
CD $Env:Temp;
Invoke-WebRequest -Uri "https://www.python.org/ftp/python/3.7.9/python-3.7.9-amd64.exe" -OutFile "python-3.7.9-amd64.exe"
.\python-3.7.9-amd64.exe /quiet PrependPath=1 InstallAllUsers=1 TargetDir="C:\Python" Include_test=0;
Start-Sleep 60;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment