You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to compile with python wrappers and the changes I made (simply by uncommenting) to config/config.in are:
## Uncomment following to enable building of wrappers
INCLUDE_MODULES += WRAPPERS
## Only set this if you *DO* want to run swig (for example to modify
## the wrappers yourself). If so, the safest bet is to use the same
## version of swig as speech tools developers (download from
## http://www.swig.org/ (SWIG-3.02 last tested))
##
CONFIG_SWIG_COMPILER = /usr/local/bin/swig
# Languages to generate wrappers for. Currently: PYTHON
# PERL5 is no longer supported
CONFIG_WRAPPER_LANGUAGES = PYTHON
# Language specific includes should be set to correct site paths
CONFIG_PYTHON_INCLUDES= -I/usr/include/python2.7/
and then
./configure
make info
make
and ran into this problem:
Making in directory ./wrappers ...
Making in directory wrappers/interface ...
Making in directory wrappers/interface/python ...
Making new directory wrappers/python
mkdir: python: File exists
make[2]: *** No rule to make target `update'. Stop.
make[1]: *** [python] Error 2
make: *** [wrappers] Error 2
I'm using speech_tools 2.5, Apple LLVM version 9.1.0 (clang-902.0.39.2)
Does anyone have any advice? Thanks in advance!
The text was updated successfully, but these errors were encountered:
There is a lot of work to be done here. It's not too hard to get the swig wrappers up with modern swig and so on, but there are still issues such as a total crap out when EST tries to allocate big memory under python. The prior python bindings are far out of date and were removed for being more trouble than benefit at the time. It is going to take a concerted and more modern effort to make these bindings viable -- which I think is quite important, but we need someone to take it on.
I would like to compile with python wrappers and the changes I made (simply by uncommenting) to config/config.in are:
and then
./configure
make info
make
and ran into this problem:
I'm using speech_tools 2.5, Apple LLVM version 9.1.0 (clang-902.0.39.2)
Does anyone have any advice? Thanks in advance!
The text was updated successfully, but these errors were encountered: