Where Is Python: Installed

It's common to have several Python versions. Here's why:

# 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 where is python installed

Knowing the installation path solves three common headaches: It's common to have several Python versions

If you know where Python is installed but your computer says it’s "not recognized," you need to add that folder path to your . This tells your computer to look in that specific folder whenever you type "python." /dev/null find /usr/local -name python3 2&gt