DA-RNN
DA-RNN copied to clipboard
cannot find -ltensorflow_framework
While building and execute sh make.sh, i got
/usr/bin/ld: cannot find -ltensorflow_framework
collect2: error: ld returned 1 exit status
From tensorflow github issues, i found that tensorflow_framework was removed. https://github.com/tensorflow/tensorflow/issues/1569
Anyone knows how to deal with it? Thanks!
This should be a library in tensorflow. Maybe try to upgrade your tensorflow version.
hi, i have met the same problem, how do you work it out? thanks
As far as I tested, 1.2 and 1.3 of TF does not have that framework. So I work it out by using TF 1.4.
As far as I tested, 1.2 and 1.3 of TF does not have that framework. So I work it out by using TF 1.4.
Hi, does it work with TF1.4? do you get the tensorflow_framework?
I have installed TF 1.14. Still, I am getting the same error. Does anyone have any idea if it has been again moved from TF 1.14 onwards?
same problem on TF 1.14
I have installed TF 1.14. Still, I am getting the same error. Does anyone have any idea if it has been again moved from TF 1.14 onwards?
same problem on TF 1.14
https://github.com/bgshih/aster/issues/56#issuecomment-501973315 This answer can help you
if using tensorflow 2.0 change out "-ltensorflow_framework" for "-fPIC"
As far as I tested, 1.2 and 1.3 of TF does not have that framework. So I work it out by using TF 1.4.
Hi, does it work with TF1.4? do you get the tensorflow_framework?
Make sure the directory $(python -c 'import tensorflow as tf; print(tf.sysconfig.get_lib())')
is linked with the -L
parameter and that libtensorflow_framework.so*
exists under that directory
While building and execute sh make.sh, i got
/usr/bin/ld: cannot find -ltensorflow_framework collect2: error: ld returned 1 exit status
From tensorflow github issues, i found that tensorflow_framework was removed. tensorflow/tensorflow#1569
Anyone knows how to deal with it? Thanks!
I met the same problem.Have you solved it?
I also met this problem in TF1.8. And my work station is Windows. Does anyone know how to deal with it? Thank you.