On Mar 17, 2022, at 16:22, Tom wrote: > Hello people, how do I install a python replacement for macOS 12.3?
MacPorts offers many versions of Python. Python 2.7 (/usr/bin/python) was removed in macOS 12.3. If you want to continue to use Python 2.7, you can install the python27 port: sudo port install python27 If you want "python" to refer to MacPorts python 27, you can select it: sudo port select python python27 This will create an /opt/local/bin/python symlink for you.
