Skip to content

Instantly share code, notes, and snippets.

@aaaddress1
Last active June 23, 2021 11:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aaaddress1/d7269f30996cfd25565e8bd6416db367 to your computer and use it in GitHub Desktop.
Save aaaddress1/d7269f30996cfd25565e8bd6416db367 to your computer and use it in GitHub Desktop.
Guide: Install iPython on Windows 10 via PowerShell

Install iPython on Windows 10 (PowerShell Script)

Install Python 3.7

mkdir C:/temp/ [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 Invoke-WebRequest -Uri "https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe" -OutFile "c:/temp/python-3.7.0.exe" c:/temp/python-3.7.0.exe /quiet InstallAllUsers=0 PrependPath=1 Include_test=0

Install iPyhton

python -m pip install ipython

@aaaddress1
Copy link
Author

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment