Tensorflow import error in OS X 10.8.5 Expected in

I am trying to install shadoworflow in my mac. I have anaconda python. I installed shadoworflow using

 pip install -i https://pypi.anaconda.org/jjhelmus/simple tensorflow

I also tried the entire option provided in the tensorflow installation guide.

When I try to import, it gives the following error:

ImportError: dlopen(/Users/SummerREU/anaconda/lib/python2.7/site-packages/tensorflow/python/_pywrap_tensorflow.so, 2): Symbol not found: ___sincos_stret
  Referenced from: /Users/SummerREU/anaconda/lib/python2.7/site-packages/tensorflow/python/_pywrap_tensorflow.so
  Expected in: /usr/lib/libSystem.B.dylib
 in /Users/SummerREU/anaconda/lib/python2.7/site-packages/tensorflow/python/_pywrap_tensorflow.so
+1
source share
2 answers

The problem was resolved after updating to OS X 10.11. OS X 10.8.5 is not compatible with tesorflow, even if you are trying to build from source code. It can only work on OS X 10.8 using docker .

To install using docker follow this link.

+1

python OS X python brew

0

Source: https://habr.com/ru/post/1615354/


All Articles