Difference between revisions of "Install (source code)"
Baoilleach (Talk | contribs) (May need to edit LD_LIBRARY_PATH) |
Baoilleach (Talk | contribs) (Added instructions for using --enable-maintainer-mode) |
||
Line 56: | Line 56: | ||
ImportError: libopenbabel.so.1: cannot open shared object file: No such file or directory | ImportError: libopenbabel.so.1: cannot open shared object file: No such file or directory | ||
</pre> | </pre> | ||
+ | |||
+ | ==== Advanced Notes ==== | ||
+ | |||
+ | * If you need to recompile the SWIG bindings for the openbabel module, make sure you have the latest version of SWIG installed, and at Step (3) above, run configure as follows: <code>./configure --enable-maintainer-mode</code> | ||
[[Category:Installation]] | [[Category:Installation]] |
Revision as of 04:52, 16 November 2006
Step-by-step Installation Instructions for OpenBabel
These instructions describe the installation procedure for OpenBabel 2.0.2. For more different releases, the version number will be different and you should take this in account when reading the instructions below. In addition, these instructions assume that you have root access.
(1) Download the latest version (2.0.2, currently)
(2) Open a command window, change directory into 'openbabel', and decompress the downloaded file with following command:
tar zxvf openbabel-2.0.2.tar.gz
This will create a folder called 'openbabel-2.0.2'.
(3) You now need to configure and compile openbabel. To do this, change directory into 'openbabel-2.0.2'. Run the following commands, one after the other
./configure | tee configure.out make | tee make.out
If there are any errors at this point, send an email to the openbabel-discuss mailing list and attach the files 'configure.out' and 'make.out'.
(4) If you have root permissions, you should install openbabel globally. As root, run the following command:
make install
(5) If you want to use OpenBabel from Python, you now need to compile the python extension. This may require an extra Python package depending on your Linux distribution. For example, for Debian you need the 'python-dev' package (installed using 'apt-get'); for SUSE, you need 'python-devel' (installed using YaST).
Change directory to 'openbabel-2.0.2/scripts/python' and run:
python setup.py build
(6) To install the python interface globally, as root type:
python setup.py install
(7) You may need to add the location of libopenbabel.so.1 (on my system, the location is /usr/local/lib) to the environment variable LD_LIBRARY_PATH if you get the following error when you try to import the OpenBabel library at the Python prompt:
$ python >>> import openbabel Traceback (most recent call last): File "<stdin>", line 1, in ? File "/usr/lib/python2.4/site-packages/openbabel.py", line 9, in ? import _openbabel ImportError: libopenbabel.so.1: cannot open shared object file: No such file or directory
Advanced Notes
- If you need to recompile the SWIG bindings for the openbabel module, make sure you have the latest version of SWIG installed, and at Step (3) above, run configure as follows:
./configure --enable-maintainer-mode