Skip to content

Instantly share code, notes, and snippets.

View machbio's full-sized avatar
💭
I may be slow to respond.

Sandeep Shantharam machbio

💭
I may be slow to respond.
  • Greater Boston Area
  • 00:48 (UTC -04:00)
View GitHub Profile
@machbio
machbio / openbabel_install.txt
Last active August 29, 2015 14:17
OpenBabel Installation from Source with Python Bindings and No GUI
wget http://sourceforge.net/projects/openbabel/files/openbabel/2.3.1/openbabel-2.3.1.tar.gz
tar xvfz openbabel-2.3.1.tar.gz
mkdir build
cd build
sudo apt-get install libxml2-dev zlib1g-dev libeigen2-dev libcairo2-dev python-dev cmake
cmake ../openbabel-2.3.1 -DCMAKE_INSTALL_PREFIX=/path/to/install -DCMAKE_BUILD_TYPE=DEBUG -DPYTHON_BINDINGS=ON -Wno-dev
make -j 8
make install
echo "export LD_LIBRARY_PATH=/babel/install/path/lib:/usr/local/lib" > "~/.bashrc"