summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-11-16 10:41:59 -0500
committerJason R. Coombs <jaraco@jaraco.com>2014-11-16 10:41:59 -0500
commitaffa001a6767efee24b4d6bc1a2f04eb7aeea65b (patch)
tree6fac11aed91937c5533cc8950ba8d1d6b9e8e719
parent1714060fb8083ad4f7a440b049d1b8c71dc003be (diff)
parent5f5ad73d306818b6dd4ac94dc67f5abb60534037 (diff)
downloadpython-setuptools-git-affa001a6767efee24b4d6bc1a2f04eb7aeea65b.tar.gz
Merge
-rwxr-xr-xREADME.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/README.txt b/README.txt
index 6920b90c..c6973298 100755
--- a/README.txt
+++ b/README.txt
@@ -83,6 +83,18 @@ Alternatively, Setuptools may be installed to a user-local path::
> wget https://bootstrap.pypa.io/ez_setup.py -O - | python - --user
+Note that on some older systems (noted on Debian 6 and CentOS 5 installations),
+`wget` may refuse to download `ez_setup.py`, complaining that the certificate common name `*.c.ssl.fastly.net`
+does not match the host name `bootstrap.pypa.io`. In addition, the `ez_setup.py` script may then encounter similar problems using
+`wget` internally to download `setuptools-x.y.zip`, complaining that the certificate common name of `www.python.org` does not match the
+host name `pypi.python.org`. Those are known issues, related to a bug in the older versions of `wget`
+(see `Issue 59 <https://bitbucket.org/pypa/pypi/issue/59#comment-5881915>`_). If you happen to encounter them,
+install Setuptools as follows::
+
+ > wget --no-check-certificate https://bootstrap.pypa.io/ez_setup.py
+ > python ez_setup.py --insecure
+
+
Unix including Mac OS X (curl)
==============================