I\'ve install Python 3.4 and Python 3.6 on my local machine successfully, but am unable to install packages with pip3
.
When I execute pip3 install
In the case of using pyenv
to manage python installations on Mac OS Catalina, I had to install openssl
with brew first and then after that run pyenv install 3.7.8
which seemed to build the python installation using the openssl
from homebrew (it even said as such in the installation output). Then pyenv global 3.7.8
and I was away.