diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2016-01-01 00:19:43 -0500 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2016-01-01 00:19:43 -0500 |
commit | 3a321fff642801bc75d552f97be46de4c5dc0ec7 (patch) | |
tree | 556c26d64e861b0fc882556e8e30bf6ef6eaa7c4 /docs | |
parent | 46f4ab064a4cfcaf330e9cb5a037ed44d9a36818 (diff) | |
parent | d4ea53b615d777cc0b95edbf1a90524c0b16f7e4 (diff) | |
download | cryptography-3a321fff642801bc75d552f97be46de4c5dc0ec7.tar.gz cryptography-3a321fff642801bc75d552f97be46de4c5dc0ec7.tar.bz2 cryptography-3a321fff642801bc75d552f97be46de4c5dc0ec7.zip |
Merge pull request #2614 from reaperhulk/doc-wheel-cache
add a small note about clearing the wheel cache
Diffstat (limited to 'docs')
-rw-r--r-- | docs/installation.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/installation.rst b/docs/installation.rst index 16c42d2d..ee0384c9 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -58,6 +58,8 @@ to include the proper locations. For example: C:\> set INCLUDE=C:\OpenSSL-win64\include;%INCLUDE% C:\> pip install cryptography +If you need to rebuild ``cryptography`` for any reason be sure to clear the +local `wheel cache`_. .. _build-on-linux: @@ -227,6 +229,9 @@ You can also build cryptography statically: $ sudo port install openssl $ env CRYPTOGRAPHY_OSX_NO_LINK_FLAGS=1 LDFLAGS="/opt/local/lib/libssl.a /opt/local/lib/libcrypto.a" CFLAGS="-I/opt/local/include" pip install cryptography +If you need to rebuild ``cryptography`` for any reason be sure to clear the +local `wheel cache`_. + Building cryptography with conda -------------------------------- @@ -257,3 +262,4 @@ information, consult `Greg Wilson's blog post`_ on the subject. .. _`Greg Wilson's blog post`: http://software-carpentry.org/blog/2014/04/mr-biczo-was-right.html .. _virtualenv: https://virtualenv.pypa.io/en/latest/ .. _openssl.org: https://openssl.org/source/ +.. _`wheel cache`: https://pip.pypa.io/en/stable/reference/pip_install/#caching |