How do I install pip on Windows?

pip is a package management system used to install and manage software packages written in Python. It's a replacement for easy_install . If you have installed Python 3.4 or later, pip is included with Python and should already be working on your system. It makes the community's wealth of libraries accessible to everyone. To install pip, download get-pip.py via https://bootstrap.pypa.io/get-pip.py to a directory on your computer. After that, navigate into the directory in your command prompt window and run
python get-pip.py
To verify a successful installation in your command prompt , navigate to the working directory.
pip --version

Upgrade PIP

In order to upgrade PIP in Windows:

python -m pip install --upgrade pip