diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2017-10-12 12:38:06 +0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2017-10-12 00:38:06 -0400 |
commit | d0db04c989b383ed106b4a2948e3955deae43c49 (patch) | |
tree | f166bfe10a54cdab53154039930559761cc6d141 | |
parent | b0aa8476d7df5585a8d0b941af4de19c513990fc (diff) | |
download | cryptography-d0db04c989b383ed106b4a2948e3955deae43c49.tar.gz cryptography-d0db04c989b383ed106b4a2948e3955deae43c49.tar.bz2 cryptography-d0db04c989b383ed106b4a2948e3955deae43c49.zip |
add a faq entry for a message outdated pip/setuptools can output (#3971)
* add a faq entry for a message outdated pip/setuptools can output
* attention to detail is not my strong suit
-rw-r--r-- | docs/faq.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/faq.rst b/docs/faq.rst index 7133f0c5..4ab518e4 100644 --- a/docs/faq.rst +++ b/docs/faq.rst @@ -84,6 +84,13 @@ earlier the default compiler is extremely old. Use ``pkg_add`` to install a newer ``gcc`` and then install ``cryptography`` using ``CC=/path/to/newer/gcc pip install cryptography``. +Installing ``cryptography`` fails with ``Invalid environment marker: python_version < '3'`` +------------------------------------------------------------------------------------------- + +Your ``pip`` and/or ``setuptools`` are outdated. Please upgrade to the latest +versions with ``pip install -U pip setuptools`` (or on Windows +``python -m pip install -U pip setuptools``). + Installing cryptography with OpenSSL 0.9.8 or 1.0.0 fails --------------------------------------------------------- |