diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2018-01-06 11:07:40 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2018-01-06 10:07:40 -0600 |
commit | f8327a977f31ef1d66c11555d65deb1c3f263bc5 (patch) | |
tree | 58056d668971e0b1beeec76d71df10efde1dd50b /docs | |
parent | 110398ee2e28a164ad6e564587d392bfb870eb16 (diff) | |
download | cryptography-f8327a977f31ef1d66c11555d65deb1c3f263bc5.tar.gz cryptography-f8327a977f31ef1d66c11555d65deb1c3f263bc5.tar.bz2 cryptography-f8327a977f31ef1d66c11555d65deb1c3f263bc5.zip |
Drop conda workaround from installation docs (#4073)
I don't think it's relevant anymore
Diffstat (limited to 'docs')
-rw-r--r-- | docs/installation.rst | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/docs/installation.rst b/docs/installation.rst index 35bfbbaf..90bdc2a6 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -273,33 +273,10 @@ You can also build cryptography statically: If you need to rebuild ``cryptography`` for any reason be sure to clear the local `wheel cache`_. -Building cryptography with conda --------------------------------- - -Because of a bug in conda, attempting to install cryptography out of the box -will result in an error. This can be resolved by setting the library path -environment variable for your platform. - -On macOS: - -.. code-block:: console - - $ env DYLD_LIBRARY_PATH="$HOME/anaconda/lib" pip install cryptography - -and on Linux: - -.. code-block:: console - - $ env LD_LIBRARY_PATH="$HOME/anaconda/lib" pip install cryptography - -You will need to set this variable every time you start Python. For more -information, consult `Greg Wilson's blog post`_ on the subject. - .. _`Homebrew`: https://brew.sh .. _`MacPorts`: https://www.macports.org .. _`openssl-release`: https://ci.cryptography.io/job/cryptography-support-jobs/job/openssl-release-1.1/ -.. _`Greg Wilson's blog post`: https://software-carpentry.org/blog/2014/04/mr-biczo-was-right.html .. _virtualenv: https://virtualenv.pypa.io/en/latest/ .. _openssl.org: https://www.openssl.org/source/ .. _`wheel cache`: https://pip.pypa.io/en/stable/reference/pip_install/#caching |