From e43861db8fc80982a400bfa49105dbfe5987e84a Mon Sep 17 00:00:00 2001 From: David Reid Date: Wed, 7 May 2014 16:19:08 -0700 Subject: Fix #1020 - Add conda instructions for linux. --- docs/installation.rst | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'docs') diff --git a/docs/installation.rst b/docs/installation.rst index e2b35898..6867e962 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -128,13 +128,20 @@ 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 -``DYLD_LIBRARY_PATH`` environment variable: +will result in an error. This can be resolved by setting the library path environment variable for your platform. + +On OS X: .. 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. -- cgit v1.2.3 From 18563e61aafdf1f440d1823033e0ec2f2719d4ca Mon Sep 17 00:00:00 2001 From: David Reid Date: Wed, 7 May 2014 16:20:09 -0700 Subject: Lowercase a. --- docs/installation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/installation.rst b/docs/installation.rst index 6867e962..a2bb4aab 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -136,7 +136,7 @@ On OS X: $ env DYLD_LIBRARY_PATH="$HOME/anaconda/lib" pip install cryptography -And on Linux: +and on Linux: .. code-block:: console -- cgit v1.2.3 From e162e26c30224137cdf0d65d0c1c0498e2c7ff41 Mon Sep 17 00:00:00 2001 From: David Reid Date: Wed, 7 May 2014 16:21:00 -0700 Subject: Wrap. --- docs/installation.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/installation.rst b/docs/installation.rst index a2bb4aab..1efe1af5 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -128,7 +128,8 @@ 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. +will result in an error. This can be resolved by setting the library path +environment variable for your platform. On OS X: -- cgit v1.2.3