I have this path in my mac:
/usr/local/lib/python3.8/site-packages
but I don't have /usr/local/bin/python3.8
, which should be the interpreter.
Currently, my pip3 install
command would install packages into /usr/local/lib/python3.8/site-packages
, but I can't use python3.8 since I don't have the interpreter. I don't care which version of python I use. I just want to install packages into the directory that I can use.
So please help me with one of the questions:
- Install Python 3.8 interpreter so I can use packages installed by pip3.
OR
- Change the default pip3 installation path to other directory such as
/usr/local/lib/python3.7/site-packages
which I already have.