On 04/05/2015 09:58, Cecil Westerhof wrote:
But when I do: import urllib3.contrib.pyopenssl I get: Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib/python3.4/site-packages/urllib3/contrib/pyopenssl.py", line 55, in <module> import OpenSSL.SSL File "/usr/lib64/python3.4/site-packages/OpenSSL/__init__.py", line 8, in <module> from OpenSSL import rand, crypto, SSL File "/usr/lib64/python3.4/site-packages/OpenSSL/rand.py", line 9, in <module> from six import integer_types as _integer_types ImportError: No module named 'six'When I then give: pip3 install -U OpenSSL It goes wrong: Could not fetch URL https://pypi.python.org/simple/OpenSSL/: 404 Client Error: Not Found I checked and even https://pypi.python.org/simple/ does not exist. Anyone an idea what is happening here?
Showing my complete ignorance of *nix, what is the difference betweeen "/usr/lib/python3.4/..." and "/usr/lib64/python3.4/..."? Simply 32 versus 64 bit, which can or can't be mixed, or what?
-- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list
