How To Manage Different Python3 Versions On Your Mac (Safely)

Default Python Installation

Jonathan Duran
Python in Plain English
3 min readApr 8, 2023

--

As you probably already know, your Mac comes with a pre-installed version of Python.

  • Run the python3 --version command to find your system's default version.
  • Run the which python3 to see where the Python has been installed.

--

--