To check the version of the PIP package installer for Python, you can type the pip --version in Terminal of macOS or Command Prompt for Windows.
Note: You might get an error saying command not found: pip, that's because you must have installed pip3 version, so try pip3 --version instead.
% pip3 --version
pip 20.2.3
from /Library/Developer/CommandLineTools/
Library/Frameworks/Python3.framework/
Versions/3.8/lib/python3.8/site-packages/pip (python 3.8)
As you can see I have pip3 version 20.0.3 installed at location /Library/Developer/../lib/python3.8/site-packages/pip

- tkinter - Hello World! Program
- How to install Python Specific version (3.8, 3.9 or 3.10) using Brew
- How to install SpaCy (NLP Library) on Mac
- Python matplotlib segmentation fault: 11 macOS Big Sur
- How to uninstall pip Python packages
- 3 Ways to find if element is present in a List in Python
- How to Convert Python String to DateTime Object
- Python f-strings Formatted String Literals Syntax and Examples
- Where does brew install python in macOS
- Take input argument from command line in Python Programming
- Advanced print() Function Tutorial and Techniques for Python Developers
- How to add borders to tkinter label text
- Whats new in Python 3.10 Pre-release
- Float built-in function in Python
- List of All 35 Reserved Keywords in Python Programming Language 3.11
- How to check if Key Exists in Python Dictionary?
- Read a file line by line in Python Program
- ModuleNotFoundError: No module named qdarkstyle.colorsystem [Python]
- What is the Max and Minimum Value of int type in Python?
- What is Terminal Velocity and its Formula? How to calculate it programmatically?
- Fix: TypeError: can only concatenate str (not int) to str in Python
- How to take user input from the console in a Python program
- [Fix] TypeError: str object is not callable in Python
- 3 Python program to add two numbers
- How to delete a file using Python code example
- Clone a particular remote brach using git clone command - Git
- Ways to Convert Integer or int to Long in Java - Java
- Remove Now Playing icon from macOS Big Sur Menu Bar - MacOS
- WhatsApp Web escanner - WhatsApp
- [Android Studio] failed to find Build Tools revision 23.0.0 rc1 - Android-Studio
- Encode or Decode Base64 String using Mac Terminal Command - MacOS
- Git Rename master branch make to main using Command - Git
- How to display Toast on Button Click : Android - Android