aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-05-02 10:33:36 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2014-05-02 10:33:36 -0700
commitd8fc25704465761aed65e15591ac9e0f4462a857 (patch)
tree06a10788d0335f6de541859af3ec66af7801c032 /docs
parent8019b8b3691feac6e7b720cd37b5cb95d5f9efb9 (diff)
downloadcryptography-d8fc25704465761aed65e15591ac9e0f4462a857.tar.gz
cryptography-d8fc25704465761aed65e15591ac9e0f4462a857.tar.bz2
cryptography-d8fc25704465761aed65e15591ac9e0f4462a857.zip
More details
Diffstat (limited to 'docs')
-rw-r--r--docs/installation.rst13
1 files changed, 10 insertions, 3 deletions
diff --git a/docs/installation.rst b/docs/installation.rst
index 3676de29..3eaa2d02 100644
--- a/docs/installation.rst
+++ b/docs/installation.rst
@@ -127,11 +127,18 @@ Building cryptography with conda
--------------------------------
Because of a bug in conda, attempting to install cryptography out of the box
-will result in an error. Both the nature of the issue and the workaround are
-described by `Greg Wilson`_.
+will result in an error. This can be resolved by setting the
+``DYLD_LIBRARY_PATH`` environment variable:
+
+.. code-block:: console
+
+ $ env DYLD_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`: http://brew.sh
.. _`MacPorts`: http://www.macports.org
.. _`pre-compiled binaries`: https://www.openssl.org/related/binaries.html
-.. _`Greg Wilson`: http://software-carpentry.org/blog/2014/04/mr-biczo-was-right.html
+.. _`Greg Wilson's blog post`: http://software-carpentry.org/blog/2014/04/mr-biczo-was-right.html