i get this error:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python2.6/dist-packages/ghmm.py", line 112, in <module>
import ghmmwrapper
File "/usr/local/lib/python2.6/dist-packages/ghmmwrapper.py", line 25, in <module>
_ghmmwrapper = swig_import_helper()
File "/usr/local/lib/python2.6/dist-packages/ghmmwrapper.py", line 21, in swig_import_helper
_mod = imp.load_module('_ghmmwrapper', fp, pathname, description)
ImportError: libghmm.so.1: cannot open shared object file: No such file or directory
but
root@ubuntu:~# sudo locate libghmm
/usr/local/lib/libghmm.a
/usr/local/lib/libghmm.la
/usr/local/lib/libghmm.so
/usr/local/lib/libghmm.so.1
/usr/local/lib/libghmm.so.1.0.0
Why go i get this error? i tried adding
/usr/local/lib/
to my PYTHONPATH
but it didn't work.
Try to just execute sudo ldconfig for run-time bindings.
PYTHONPATH
is working for python modules, not for system libraries.You can add the local path to your system:
/etc/ld.so.conf
/usr/local/lib
Then restart your application, it will work.
If you don't want to change anything to your system, you can use the environment variable: