我运行Ubuntu,然后按照link ...
中的所有说明进行操作我尝试测试fst库时出现此错误
>>> import fst
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python2.7/dist-packages/fst/__init__.py", line 1, in <module>
from fst._fst import EPSILON, EPSILON_ID, SymbolTable,\
ImportError: libfst.so.1: cannot open shared object file: No such file or directory
>>>
答案 0 :(得分:2)
听起来加载器没有在/usr/local/lib
中查找库。将该目录添加到/etc/ld.so.conf*
中的加载程序配置中,然后运行ldconfig
。