无法安装 OpenFST Python 扩展



我试图根据本指南安装OpenFST Python扩展。有两种选择可以执行此操作。
第一个选项是在配置OpenFst期间发出--enable-python,我尝试过但失败了。
所以我选择了第二个选项。我使用以下命令成功安装了OpenFST:

./configure --enable-far
make
sudo make install

然后我尝试使用pippip install openfst
安装 PyPi 包openfst,并收到以下错误:

Collecting openfst
Using cached https://files.pythonhosted.org/packages/cc/6b/cc05392480e2232e176be895b9ca2b9f4a5f153f99ab276b37d440b3bace/openfst-1.6.6.tar.gz
Building wheels for collected packages: openfst
Running setup.py bdist_wheel for openfst ... error
Complete output from command /home/arif/anaconda3/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-install-7y6dl6o2/openfst/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('rn', 'n');f.close();exec(compile(code, __file__, 'exec'))" bdist_wheel -d /tmp/pip-wheel-zadciiwk --python-tag cp36:
running bdist_wheel
running build
running build_ext
building 'pywrapfst' extension
creating build
creating build/temp.linux-x86_64-3.6
gcc -pthread -B /home/arif/anaconda3/compiler_compat -Wl,--sysroot=/ -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -fPIC -I/home/arif/anaconda3/include/python3.6m -c pywrapfst.cc -o build/temp.linux-x86_64-3.6/pywrapfst.o -std=c++11 -Wno-unneeded-internal-declaration -Wno-unused-function
cc1plus: warning: command line option ‘-Wstrict-prototypes’ is valid for C/ObjC but not for C++
pywrapfst.cc:557:40: fatal error: fst/extensions/far/getters.h: No such file or directory
compilation terminated.
error: command 'gcc' failed with exit status 1
----------------------------------------
Failed building wheel for openfst
Running setup.py clean for openfst
Failed to build openfst
Installing collected packages: openfst
Running setup.py install for openfst ... error
Complete output from command /home/arif/anaconda3/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-install-7y6dl6o2/openfst/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('rn', 'n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-record-3niypfz6/install-record.txt --single-version-externally-managed --compile:
running install
running build
running build_ext
building 'pywrapfst' extension
creating build
creating build/temp.linux-x86_64-3.6
gcc -pthread -B /home/arif/anaconda3/compiler_compat -Wl,--sysroot=/ -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -fPIC -I/home/arif/anaconda3/include/python3.6m -c pywrapfst.cc -o build/temp.linux-x86_64-3.6/pywrapfst.o -std=c++11 -Wno-unneeded-internal-declaration -Wno-unused-function
cc1plus: warning: command line option ‘-Wstrict-prototypes’ is valid for C/ObjC but not for C++
pywrapfst.cc:557:40: fatal error: fst/extensions/far/getters.h: No such file or directory
compilation terminated.
error: command 'gcc' failed with exit status 1
----------------------------------------
Command "/home/arif/anaconda3/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-install-7y6dl6o2/openfst/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('rn', 'n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-record-3niypfz6/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-install-7y6dl6o2/openfst/

谁能帮我解决这个问题?

我在Linux Mint 18.3中使用python 3.6 (anaconda)OpenFST-1.5.4.

这里有两个问题。


首先,据我所知,尽管有文档记录,但pip install方法确实不受支持,甚至预期不起作用。凯尔·戈尔曼(我认为他是主要作者之一(在多个论坛帖子上发表了评论,回复如下:

"用pip来做这件事没有多大意义,反正这已经过时了。

"没有理由称皮普为pip。那里的版本与任意OpenFst版本不兼容。如果你做了--enable-python,然后制作并安装,你已经为你正在构建的任何版本的OpenFst安装了pywrapfst。


其次,尽管说它适用于"任何Python 2.7或更高版本",但它实际上只适用于Python 2.7:

"在提交之前,你可能想用Python扩展测试Python 3。不幸的是,我们仍然只在Python 2.7上进行开发,而且它没有在Python 3上进行测试。

事实上,这正是您尝试使用--enable-python失败的原因:

checking for a version of Python >= '2.1.0'...   File "<string>", line 1
import sys, string;         ver = string.split(sys.version)[0];     print ver >= '2.1.0'
  ^
SyntaxError: invalid syntax
no

他们对 Python 2.1 或更高版本的自动配置测试使用的是在 Python 3 中非法的语法。而且它不能很好地处理错误,所以它需要SyntaxError意味着你的 Python 是 2.0 或更早版本,因此它会中止配置。


如果你再往下看同一个线程,一个用户NurL,发布了:

在对配置文件和Makefile进行了大量调整后,我设法成功安装了Python 3的Python扩展。请参阅此 Dockerfile: https://gist.github.com/0xnurl/6f97eb39409ea48db31fe315fd1e208f

我显然不能保证这是否有效。

而且,除非您使用与 NurL 完全相同的目标,否则您必须通读该巨大的RUN wget命令行,将其分解为多个步骤,然后自己执行等效的步骤。

并且可能有一些NurL没有遇到的问题,你会遇到的。(我强烈建议至少在安装之前或之后对生成的代码运行2to3,以确保它找不到任何内容。

但这与您可能获得开箱即用的东西一样接近,因为您尝试执行的操作不受支持。如果你不能让它从那里为自己工作,你可能只是不能使用这个库。

相关内容

  • 没有找到相关文章

最新更新