0
I have python 2.7.14 installed with Pip 9.0.1 on a Macbook. I was experiencing an error trying to run Pip.list from the terminal.
I checked on Google that I needed to edit the Pip.conf file, but I couldn’t find it. So I checked the path it should be, /Library/Application Support/Pip, and create the file with the following content:
[list]
format=columns
When I try to run a command to install a package over the terminal, for example:
pip install beautifulsoup4
I have the following return:
Collecting beautifulsoup4
Cache entry deserialization failed, entry ignored
Could not fetch URL https://pypi.python.org/simple/beautifulsoup4/:
There was a problem confirming the ssl certificate: [SSL:
TLSV1_ALERT_PROTOCOL_VERSION] tlsv1 alert protocol version
(_ssl.c:661) - skipping
Could not find a version that satisfies the requirement
beautifulsoup4 (from versions: )
No matching distribution found for beautifulsoup4
Could someone help me solve?
This problem occurred before you created the
pip.conf
?– Giovanni Nunes