Last active
January 13, 2021 09:02
-
-
Save skyline75489/35a6591e6e4130d5f30764db9bf2b4ab to your computer and use it in GitHub Desktop.
Basic Python Environment For Windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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