Python - Check Version

January 19, 2026

Check default Python versions in Mac OS

python3 --version

Check where Python is coming from

which python3

List all Python versions on your system

ls -l /usr/bin/python*

If you use Homebrew (very common)

brew list | grep python
brew info python

See also:

Python - Enable Virtual Environment