yuxng / DA-RNN

Semantic Mapping with Data Associated Recurrent Neural Networks
MIT License
170 stars 72 forks source link

cannot find -ltensorflow_framework #16

Open billamiable opened 6 years ago

billamiable commented 6 years ago

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!

yuxng commented 6 years ago

This should be a library in tensorflow. Maybe try to upgrade your tensorflow version.

wsndy1010 commented 6 years ago

hi, i have met the same problem, how do you work it out? thanks

Wei2624 commented 6 years ago

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.

Bobarshad commented 5 years ago

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?

ashish-kubade commented 4 years ago

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?

ds0529 commented 4 years ago

same problem on TF 1.14

yzheng97 commented 4 years ago

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

gavintfn commented 3 years ago

if using tensorflow 2.0 change out "-ltensorflow_framework" for "-fPIC"

earor-R commented 2 years ago

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

Johnny1Qian commented 2 years ago

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?

qaz8788817 commented 6 months ago

I also met this problem in TF1.8. And my work station is Windows. Does anyone know how to deal with it? Thank you.