keithito / tacotron

A TensorFlow implementation of Google's Tacotron speech synthesis with pre-trained model (unofficial)
MIT License
2.96k stars 957 forks source link

Error libllvmlite.so: undefined symbol: LLVMInitializeInstCombine happen in process data stage #176

Closed ben-8878 closed 6 years ago

ben-8878 commented 6 years ago

install all packges sucessfully when run process.py --dataset , met the error: OSError: /data02/zhangyb/py3-virtual/lib/python3.4/site-packages/llvmlite/binding/libllvmlite.so: undefined symbol: LLVMInitializeInstCombine

During handling of the above exception, another exception occurred:

Traceback (most recent call last): File "preprocess.py", line 5, in from datasets import blizzard, ljspeech, thchs30 File "/data02/zhangyb/tacotron/datasets/blizzard.py", line 6, in from util import audio File "/data02/zhangyb/tacotron/util/audio.py", line 1, in import librosa File "/data02/zhangyb/py3-virtual/lib/python3.4/site-packages/librosa/init.py", line 12, in from . import core File "/data02/zhangyb/py3-virtual/lib/python3.4/site-packages/librosa/core/init.py", line 108, in from .time_frequency import # pylint: disable=wildcard-import File "/data02/zhangyb/py3-virtual/lib/python3.4/site-packages/librosa/core/time_frequency.py", line 10, in from ..util.exceptions import ParameterError File "/data02/zhangyb/py3-virtual/lib/python3.4/site-packages/librosa/util/init.py", line 70, in from . import decorators File "/data02/zhangyb/py3-virtual/lib/python3.4/site-packages/librosa/util/decorators.py", line 67, in from numba.decorators import jit as optional_jit File "/data02/zhangyb/py3-virtual/lib/python3.4/site-packages/numba/init.py", line 10, in from . import config, errors, runtests, types File "/data02/zhangyb/py3-virtual/lib/python3.4/site-packages/numba/config.py", line 11, in import llvmlite.binding as ll File "/data02/zhangyb/py3-virtual/lib/python3.4/site-packages/llvmlite/binding/init.py", line 6, in from .dylib import File "/data02/zhangyb/py3-virtual/lib/python3.4/site-packages/llvmlite/binding/dylib.py", line 4, in from . import ffi File "/data02/zhangyb/py3-virtual/lib/python3.4/site-packages/llvmlite/binding/ffi.py", line 124, in lib = ctypes.CDLL(_lib_name) File "/usr/lib64/python3.4/ctypes/init.py", line 346, in init self._handle = _dlopen(self._name, mode) OSError: libllvmlite.so: cannot open shared object file: No such file or directory

keithito commented 6 years ago

Can you verify that tensorflow is installed correctly by running the example here? https://www.tensorflow.org/install/install_linux#validate_your_installation

ben-8878 commented 6 years ago

@keithito I check it and find that the error is caused by install 5.0 version librosa package failture. then 0.23 version libllvmlite and 6.0 version LLVM installing lead to the failture installing 5.0 version librosa but 5.0 version librosa require 6.0 version LLVM. does the low version librosa work? otherwise, i am sure that tensorflow has been installed successfully

liuanping commented 6 years ago

@keithito i face this problem now, i want ask if you have solved it ? can you share how you fix it any way.thanks !

stutys commented 6 years ago

@v-yunbin hello, i face the same problem now, have you solved it ? can you share your methods?

manoharvhr commented 6 years ago

Has anyone found the solution to this?