Can I Relink Enthought Python To New Version Of Openssl On Mac Os X?
This morning, I'm running into SSL related problems using EPD 7.3 on Mac OS X 10.6.8. When I run pip (version 1.3.1), I get: pip install requests Downloading/unpacking requests
Solution 1:
Raymond, thanks for the report. EPD's successor, now in late beta, contains OpenSSL 0.9.8r 8 Feb 2011
, and does not have this problem. (FWIW, it also contains a recent version of requests
, which you were attempting to install when you hit the SSL issue.)
It will be out of beta very soon, but in the meantime I see that you already have a beta invitation if you would like to try it there.
We will also investigate possible fixes or workarounds for EPD 7.3.
Solution 2:
I'm finding that with the new SSL-conscious pypi I have to allow-unverified and allow-external for a lot of packages. So for requests
, this would be:
pip install --upgrade--force-reinstall--allow-all-external--allow-unverified requests requests
Post a Comment for "Can I Relink Enthought Python To New Version Of Openssl On Mac Os X?"