I am trying to run Python 3 on my MacOS High Sierra. However, the official binaries for 3.6.3 and 3.6.2 once installed are actually running 2.7.10!
To be clear, these binaries:
https://www.python.org/ftp/python/3.6.3/python-3.6.3-macosx10.6.pkg
https://www.python.org/ftp/python/3.6.2/python-3.6.2-macosx10.6.pkg
Are producing the following 2.7.10 output on my MacOS High Sierra:
$python
Python 2.7.10 (default, Jul 15 2017, 17:16:57)
[GCC 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.31)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>>
I actually uninstalled 3.6.3 before installing 3.6.2 and the results were precisely the same.
Am I doing something wrong?