Hi I cannot seem to understand why even though I just installed Python 3.9.5 (from here https://www.python.org/downloads/), the python3 command runs python 3.8.2 on the terminal, shown below.
This is my first time installing python on my Mac (macOS Big Sur).
MacBook-Air ~ % python --version
Python 2.7.16
MacBook-Air ~ % python3 --version
Python 3.8.2
How can I run what I actually installed, which is python3.9.5?
I appreciate your help.