diff options
author | Stan Seibert <stan@mtrr.org> | 2011-11-17 14:32:24 -0500 |
---|---|---|
committer | tlatorre <tlatorre@uchicago.edu> | 2021-05-09 08:42:38 -0700 |
commit | b11c8399979c7494092599001a9ab013b17667c1 (patch) | |
tree | 0a7025d5818c666483b0018a7740b5ae73881097 /doc | |
parent | 92051e2b537a68f193f1fe19612c98ab8aa7df71 (diff) | |
download | chroma-b11c8399979c7494092599001a9ab013b17667c1.tar.gz chroma-b11c8399979c7494092599001a9ab013b17667c1.tar.bz2 chroma-b11c8399979c7494092599001a9ab013b17667c1.zip |
I give up. We have to install pyublas by hand to be able to compile any extensions using it in Chroma.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/source/install.rst | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/doc/source/install.rst b/doc/source/install.rst index 9fe0bec..8939b10 100644 --- a/doc/source/install.rst +++ b/doc/source/install.rst @@ -262,17 +262,20 @@ Step 7: Chroma 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:: +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:: +Now we at a stage where the automatic dependency resolution features +of ``pip`` can do their magic. We need to upgrade the distribute +module and install PyUblas prior to installation, but the rest should +be automatic:: pip install -U distribute + pip install pyublas pip install -e hg+http://bitbucket.org/chroma/chroma#egg=Chroma Now you can enable the Chroma environment whenever you want by typing |