PROBLEM DESCRIPTION
I'm setting up a new MacBook and decided to jump too fast into downloading Python 3.8. I downloaded it from the website https://www.python.org/ before realizing it's better practice to do so with homebrew.
GOAL - Remove Python 3.8 from my PATH to later install with Homebrew
I cleared Python 3.8 from my filesystem thanks to this page https://nektony.com/how-to/uninstall-python-on-mac, but the path the Version 3.8 is still in my PATH variable.
Typing echo $PATH
in my terminal (zsh) returns /Library/Frameworks/Python.framework/Versions/3.8/bin
along with other paths. Does anyone know how I can remove this path? It no longer exists in my filesystem so it's pointing to nothing.
WHAT I HAVE TRIED
I have checked all the following files using nano and they all do not have the export command which would place it in the path in the first place.
Files checked:
/etc/profile
/etc/bashrc
~/.bash_profile
~/.bash_login
~/.profile
~/.bashrc
MY ENV
I am running a macbook pro with Catalina (10.15.4) and using zsh as my terminal.
Any help is appreciated, thanks a lot!!