Ubuntu Pastebin

Paste from boost at Thu, 27 Jul 2017 14:23:02 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
##---------------Downloaded tar from http://www.boost.org/ to the path /usr/local/src/
cd /usr/local/src/
sudo tar zxvf <boost tar file>
_____
#---------------included these in .bashrc

############ Python exports ##################
export PYTHONPATH="/usr/local/lib:/usr/lib/:/usr/local/lib/python2.7/";

############ RDKit configuration ###############
export BOOST="/usr/local/src/boost_1_64_0/"

_____________
source .bashrc
cd $BOOST
./bootstrap.sh --with-libraries=python,regex,thread,serialization
./b2
./b2 install
Download as text