<html><head><meta http-equiv="Content-Type" content="text/html charset=windows-1252"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><div>On Feb 11, 2014, at 12:30 PM, Guido van Rossum <<a href="mailto:guido@python.org">guido@python.org</a>> wrote:</div><div><br class="Apple-interchange-newline"><blockquote type="cite"><div dir="ltr"><div>I don't happen to have OpenSSL configured on my OSX dev box right now. This usually leads to some warnings during the build stage and obviously various ssl-based tests don't work, but I can still get other stuff done. But with the latest repo, "make install" refuses to complete -- it ends fatally as follows:<br>

<br>if test "xupgrade" != "xno"  ; then \<br>                case upgrade in \<br>                        upgrade) ensurepip="--upgrade" ;; \<br>                        install|*) ensurepip="" ;; \<br>

                esac; \<br>                 ./python.exe -E -m ensurepip \<br>                        $ensurepip --root=/ ; \<br>        fi<br>Traceback (most recent call last):<br>  File "/Users/guido/cpython/Lib/runpy.py", line 171, in _run_module_as_main<br>

    "__main__", mod_spec)<br>  File "/Users/guido/cpython/Lib/runpy.py", line 86, in _run_code<br>    exec(code, run_globals)<br>  File "/Users/guido/cpython/Lib/ensurepip/__main__.py", line 4, in <module><br>

    ensurepip._main()<br>  File "/Users/guido/cpython/Lib/ensurepip/__init__.py", line 203, in _main<br>    default_pip=args.default_pip,<br>  File "/Users/guido/cpython/Lib/ensurepip/__init__.py", line 74, in bootstrap<br>

    _require_ssl_for_pip()<br>  File "/Users/guido/cpython/Lib/ensurepip/__init__.py", line 23, in _require_ssl_for_pip<br>    raise RuntimeError(_MISSING_SSL_MESSAGE)<br>RuntimeError: pip 1.5.2 requires SSL/TLS<br>

make: *** [install] Error 1<br><br></div>Can this failure be suppressed in the Makefile (given that I know what I'm doing)?<br clear="all"><div><br>-- <br>--Guido van Rossum (<a href="http://python.org/~guido">python.org/~guido</a>)
</div></div>
_______________________________________________<br>Python-Dev mailing list<br><a href="mailto:Python-Dev@python.org">Python-Dev@python.org</a><br>https://mail.python.org/mailman/listinfo/python-dev<br>Unsubscribe: https://mail.python.org/mailman/options/python-dev/donald%40stufft.io<br></blockquote></div><br><div><br class="webkit-block-placeholder"></div><div>So right now pip doesn’t work without TLS, we’re working on that and our 1.6 release</div><div>should have that. I *thought* that Nick (I think?) had made it so that you just didn’t get pip</div><div>if you didn’t have TLS enabled, but apparently not.</div><div><br></div><div>You can suppress this by doing ``ENSUREPIP=no make install``, but probably this should</div><div>just print a warning instead of dying when TLS isn’t available.</div><div>
<br>-----------------<br>Donald Stufft<br>PGP: 0x6E3CBCE93372DCFA // 7C6B 7C5D 5E2B 6356 A926 F04F 6E3C BCE9 3372 DCFA

</div>
<br></body></html>