How to install libSBML 5.8.0 in Fedora 19 with Python bindings
Install compiler
yum install gcc-c++
yum groupinstall "Development Tools"
Install some additional packages if needed
yum install python-devel
yum install libxml2-devel
yum install swig
Compile and install libSBML
Go to the directory where you have exctracted libsbml source and run these 3 commands
./configure --with-python
make
make install
Make libsbml accessible to Python
In Fedora 18 you would export full path to libsbml:
export PYTHONPATH=/usr/local/lib64/python2.7/site-packages/libsbmlIn Fedora 18 you would import _libsbml not just import libsbml.
In Fedora 19 you have to export path like this:
export PYTHONPATH=/usr/local/lib64/python2.7/site-packages/
The export command expires when user leaves his/her session.
Use the libSBML in your code
import libsbml