Próbuję dowiedzieć się, czy istnieje sposób, aby uniknąć używania flagi --cert do pipowania podczas instalowania pakietów w pracy. Istnieje pewien problem z serwerem proxy, który pozwala mi tylko pobierać pakiety, których potrzebuję, gdy dostarczę tę flagę, pomimo dodania mycert.crt
pliku /usr/local/share/ca-certificates
i uruchomienia sudo update-ca-certificates
.
Przykładem komunikatów, które widzę, jest:
$ pip install "virtualenv>=1.10.1"
Downloading/unpacking virtualenv>=1.10.1
Could not fetch URL https://pypi.python.org/simple/virtualenv/: There was a problem confirming the ssl certificate: <urlopen error [Errno 1] _ssl.c:504: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed>
Will skip URL https://pypi.python.org/simple/virtualenv/ when looking for download links for virtualenv>=1.10.1
Could not fetch URL https://pypi.python.org/simple/: There was a problem confirming the ssl certificate: <urlopen error [Errno 1] _ssl.c:504: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed>
Will skip URL https://pypi.python.org/simple/ when looking for download links for virtualenv>=1.10.1
Cannot fetch index base URL https://pypi.python.org/simple/
Could not fetch URL https://pypi.python.org/simple/virtualenv/: There was a problem confirming the ssl certificate: <urlopen error [Errno 1] _ssl.c:504: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed>
Will skip URL https://pypi.python.org/simple/virtualenv/ when looking for download links for virtualenv>=1.10.1
Could not find any downloads that satisfy the requirement virtualenv>=1.10.1
Cleaning up...
No distributions at all found for virtualenv>=1.10.1
Storing complete log in /tmp/tmpwW5qXD
Można to rozwiązać za pomocą:
pip install --cert=/usr/local/share/ca-certificates/mycert.crt
Jednak wolałbym tego nie robić (ponieważ jestem pewien, że inne aplikacje napotykają ten problem).
Używam Linux Mint 15 (chociaż wcześniej miałem bardzo podobne problemy z Ubuntu 12.04), wersja pip 1.4.1.