Skip to content

Instantly share code, notes, and snippets.

@mkrause-nps
Last active September 20, 2023 18:39
Show Gist options
  • Save mkrause-nps/bcb7c75c9ea121e92f6c7982bdc170fc to your computer and use it in GitHub Desktop.
Save mkrause-nps/bcb7c75c9ea121e92f6c7982bdc170fc to your computer and use it in GitHub Desktop.
Installing `pip` on Windows 10

Installing pip on Windows 10

Prerequisit

  • Python 3.x installed on your system
  • verify with py --version

Install pip

  1. Check out details here.

  2. Check if pip is installed on your system by running: py -m pip --version

  3. If not, download the pip installation script. In Command Prompt or PowerShell run: curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py It'll create a file get-pip.py in same directory.

  4. Next run python .\get-pip.py to install pip

  5. Verify (see above) - and done.

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