I have a really messy python installation on my mac, need some help.
I installed python3 with Homebrew and it showed that
python 3.7.8 is already installed and up-to-date
But when I run python3 on my terminal, i see,
Python 3.8.3 (default, May 27 2020, 20:53:40)
[Clang 11.0.0 (clang-1100.0.33.17)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>>
And now i cant install any modules with pip3, it shows,
File "/usr/local/opt/python@3.8/bin/pip3", line 6, in <module>
from pkg_resources import load_entry_point
ModuleNotFoundError: No module named 'pkg_resources'
I would like to remove python 3.8 completely and use 3.7 instead, what should I do?