I am having trouble with my current python, so I wanted to uninstall my python and install the latest version. I installed with homebrew, so I uninstalled it with homebrew and reinstalled python 3.8.1 with the installer from the official site. Python3.8 was installed, but my python3 was not upgraded.
~ which python3 /usr/bin/python3 ~ python3 --version Python 3.7.3 I know I'm not supposed to(and I can't) manually delete things inside /usr/bin. What am I supposed to do?
PATHlook like?echo $PATH. Likely/usr/local/binsimply isn't in it and/or/usr/binhas higher priority.~ echo $PATH /usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/Applications/Visual Studio Code.app/Contents/Resources/app/bin:/usr/local/opt/fzf/bin:/Applications/Visual Studio Code.app/Contents/Resources/app/binSry I don’t understand. Can you explain it again?which -a python3give you? Does it find/usr/local/bin/python3?/usr/bin/python3/usr/local/bin/python3actually exist? Can you execute/usr/local/bin/python3 -V?