summaryrefslogtreecommitdiff
path: root/doc/source
diff options
context:
space:
mode:
authorStan Seibert <stan@mtrr.org>2011-11-17 13:16:23 -0500
committertlatorre <tlatorre@uchicago.edu>2021-05-09 08:42:38 -0700
commit14424a5788ed92f59d00082829baca1f8026c3b2 (patch)
treec54e557b4829e7c9e78d26a9c33cf5136b03fb6e /doc/source
parent9b29e7c8a6fe6610ebf52f74666fbe5860fa031c (diff)
downloadchroma-14424a5788ed92f59d00082829baca1f8026c3b2.tar.gz
chroma-14424a5788ed92f59d00082829baca1f8026c3b2.tar.bz2
chroma-14424a5788ed92f59d00082829baca1f8026c3b2.zip
More fixes to installation guide.
Diffstat (limited to 'doc/source')
-rw-r--r--doc/source/install.rst11
1 files changed, 9 insertions, 2 deletions
diff --git a/doc/source/install.rst b/doc/source/install.rst
index c2f8ce8..9fe0bec 100644
--- a/doc/source/install.rst
+++ b/doc/source/install.rst
@@ -150,7 +150,7 @@ Next, append the following lines to the end of
``$HOME/chroma_env/bin/activate`` to add the CUDA tools to the path::
export PATH=/usr/local/cuda/bin:$PATH
- export LD_LIBRARY_PATH=/usr/local/cuda/lib64
+ export LD_LIBRARY_PATH=/usr/local/cuda/lib64:$VIRTUAL_ENV/lib:$LD_LIBRARY_PATH
Finally, we can enable the virtual environment::
@@ -260,7 +260,14 @@ Chroma, so for now you will need to use our fork of g4py::
Step 7: Chroma
^^^^^^^^^^^^^^
-Finally, we are at a stage where the automatic dependency resolution
+Finally, we are getting close to being able to use ``pip`` to do the
+rest of the installation. In order for PyUblas to find boost, we have
+to create a file in your ``$HOME`` directory called ``.aksetup-defaults.py`` that contains the following lines::
+ BOOST_INC_DIR = ['/usr/include/boost']
+ BOOST_LIB_DIR = ['/usr/lib64']
+ BOOST_PYTHON_LIBNAME = ['boost_python-mt-py27']
+
+Now we at a stage where the automatic dependency resolution
features of ``pip`` can do their magic. We need to upgrade the
distribute module prior to installation, but the rest should be
automatic::