DEV Community

Nilotpal Choudhury
Nilotpal Choudhury

Posted on

Answer: How do I update\upgrade pip itself from inside my virtual environment?

The more safe method is to run pip though a python module:

python -m pip install -U pip

On windows there seem to be a problem with binaries that try to replace themselves, this method works around that limitation.

Top comments (0)