On 4/27/24 11:49 AM, Bruno Haible wrote: > - In many older systems, 'python3' exists and 'python' exists as well and is > a 2.7.x version. > > I have not seen a single system where 'python' exists, is version 3, and > 'python3' does not exist.
There is this PEP which came about with the Python 2 to Python 3 transition: https://peps.python.org/pep-0394/ If I am interpreting it correctly 'python3' would be correct. The only other python implementation that I tried was mypy3 which works fine. I wanted to try Jython but it only supports version 2.7. Collin