How to override the pip command to Python3.x instead of Python2.7?

Run this:

pip3 install --upgrade --force pip

or even more explicit:

python3 -m pip install --upgrade --force pip

This will install pip for Python 3 and make Python 3 version of pip default.

Validate with:

pip -V

Leave a Comment