Where Is Python Installed _verified_ -

# Find all python3 binaries find /usr -name python3 2>/dev/null find /usr/local -name python3 2>/dev/null find ~ -name python3 2>/dev/null On Unix-like systems (macOS/Linux), which python3 often shows a symlink, not the actual binary.

which -a python3 or using whereis :

which python3 or to see all instances:

which python3 or

(Get-Command python).Source

type -a python3 or from within Python:

Now you know exactly where Python lives on your machine, how to find it, and why it matters. Bookmark this guide for the next time you need to locate a wayward Python installation. where is python installed

where python3