Errors While Trying To Install Pip From Terminal
I am trying to install pip3 via a bash script/terminal. I am using the following commands: curl -O https://bootstrap.pypa.io/get-pip.py /usr/local/bin/python3.6 get-pip.py When I
Solution 1:
The reason of this error message is the SSL module is missing from your system, you can't perform any request to an HTTPS
URL, Try without "s" http
instead of https
OR THE BEST, install OpenSSL maybe with brew install openssl
check the official docs for more information, good luck!
Post a Comment for "Errors While Trying To Install Pip From Terminal"