-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Setuptools installation problems: wget refuses to download files over https due to certificate errors #282
Comments
Original comment by konstantint (Bitbucket: konstantint, GitHub: konstantint): In the first case, adding --no-check-certificate to the wget call does not help, because the second problem (the call in ez_setup) still remains::
|
Original comment by konstantint (Bitbucket: konstantint, GitHub: konstantint): Changing
Seems to fix the issue. Unless someone comes up with something better, I'd recommend that solution so far (as well as fixing the docs in pypi and, eventually, the server certificates). |
Original comment by konstantint (Bitbucket: konstantint, GitHub: konstantint): This is not an exact duplicate, as several problems are involved which are not handled by #75.
|
Original comment by jaraco (Bitbucket: jaraco, GitHub: jaraco): I don't think bootstrap.pypa.io has an invalid certificate. I'm able to load it just fine from Firefox without warnings as are most users following the instructions. My guess is you're using an old version of wget (same as described here). As for updating the documentation, feel free to make a pull request to describe the option. Be sure to capture under which circumstances the |
Original comment by konstantint (Bitbucket: konstantint, GitHub: konstantint): OK, I see. Old version of wget it is indeed. I'll try to add something to the docs then. |
Original comment by konstantint (Bitbucket: konstantint, GitHub: konstantint): See pull request #108 |
Originally reported by: konstantint (Bitbucket: konstantint, GitHub: konstantint)
I encountered this issue in two versions:
Note that in the first case the wget is invoked by the user and the problem is with the certificate of bootstrap.pypa.io, and in the second wget is invoked from within ez_setup.py and the problem is with the certificate of pypi.python.org.
Moreover, this problem seems to occur on CentOS hosts, whereas on some other Linux flavors wget is not as fussy. In any case, perhaps something could be done, by either fixing the server certificates, updating documentation, adding --no-check-certificate to the wget invocation in the docs or ez_setup, or via another option.
The text was updated successfully, but these errors were encountered: