bgshih / seglink

Detecting text by linking segments.
245 stars 74 forks source link

compile error #1

Open txacuhan opened 7 years ago

txacuhan commented 7 years ago

'third_party/eigen3/unsupported/Eigen/CXX11/Tensor' file not found

thanks!

JarveeLee commented 7 years ago

same error...

StickCui commented 7 years ago

@txacuhan @JarveeLee I guess that you haven't installed tensorflow for python3

sudo pip3 install tensorflow

or

sudo pip3 install tensorflow-gpu

then remove the folder of build in seglink/cpp. And rebuild it.

JarveeLee commented 7 years ago

I installed tensorflow 1.0 for py3.6 in anaconda by

pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.0.0-cp36-cp36m-linux_x86_64.whl

but still get same error......@StickCui

BowieHsu commented 7 years ago

@JarveeLee I use python2.7 so i modified the CMakeLists.txt. Try "python -c" instead of "python3 -c"

JarveeLee commented 7 years ago

Ah thanks I succeeded in building by your method! @BowieHsu