Problem
In MacOS 12.3 Apple removed python2.7 (python) from MacOS.
Solution
What I did to solve this is link python3 to python, I wouldn't recommend it because it's sus, I would recommend you wait until Arduino IDE fixes this issue in a later build. For the time being, you could try their Web IDE: Arduino Editor
However, here are the instructions to link python3 to python:
- If you don't have - python3installed, install it here in the link below:
 - Python Install Page 
- Find your path for the current version of - python3you're using
 - which python3
 - it'll show up with something like this:
- /Library/Frameworks/Python.framework/Versions/3.10/bin/python3
 
- Copy that and use it to run this command that links - python 3to- python. Replace the first file path with where your- python3is.
 - ln -s -f INSERT_PATH_OF_PYTHON3 /usr/local/bin/python
 - for example: - ln -s -f /Library/Frameworks/Python.framework/Versions/3.10/bin/python3 /usr/local/bin/python