Re: [Rdkit-discuss] every thing
Open-Source Cheminformatics and Machine Learning
Brought to you by:
glandrum
|
From: Greg L. <gre...@gm...> - 2009-10-16 04:55:01
|
2009/10/15 Christian de Bouillé <amb...@wa...>: > Dear Greg > > Compiling Boost, do I have to create a stage folder ? > > Here what I have done with Fedora 11 32 bytes? > I try also with Fedora 10 with 64 bytes > > bjam --with-thread --with-python release install This should have copied the boost shared libraries to /usr/local/lib, can you please look in that directory and see if they are there? > > RDBASE=/home/bouille/rdkit/trunk > export RDBASE > BOOSTHOME=/usr/local/src/boost_1_40_0 > export BOOSTHOME > BOOST_BUILD_PATH=/usr/local/src/boost_1_40_0 > export BOOST_BUILD_PATH > BOOST_ROOT=/usr/local/src/boost_1_40_0/boost > export BOOST_ROOT > LD_LIBRARY_PATH=$RDBASE/bin:/usr/local/src/boost_1_40_0/bin.v2/libs/thread/b > uild/gcc-4.4.1/release/threading-multi/libboost_thread.so.1.40.0 > export LD_LIBRARY_PATH > PYTHON_ROOT=/usr/lib/python2.6 > export PYTHON_ROOT > PYTHONPATH=$RDBASE:$PYTHONPATH > export PYTHONPATH If you find the boost share libraries in /usr/local/lib, you should make one change to what you have: LD_LIBRARY_PATH=$RDBASE/bin:/usr/local/lib export LD_LIBRARY_PATH and then, hopefully, things will work. -greg |