If you are using pip or pip3 package installer for Python, then you must have seen that when you do not upgrade your package utility, a warning is displayed after each time you try to install a new package or update one.
WARNING: You are using pip version 19 however version 21 is available
In order to update pip or pip3 package installer you can run the below command.
To upgrade pip package:
pip install --upgrade pip --user
To upgrade pip3 package:
pip3 install --upgrade pip --user
Example:
% pip3 install --upgrade pip --user
Collecting pip
Using cached https://files.pythonhosted.org/packages/47/ca/d/pip-21.1.3-py3-none-any.whl
Installing collected packages: pip
Successfully installed pip-21.1.3
Note: if you do not provide the --user parameter you might get Error 13 while updating pip
If you have the pip3 package installed and you try to use the pip command you will get the error: zsh: command not found: pip

Have Questions? Post them here!
Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!