2017-06-23 87 views
0

进口tensorflow当从我的覆盆子PI的源代码安装tensorflow后,进口tensorflow给了我以下错误:错误树莓PI 2

import tensorflow 
Traceback (most recent call last): 
    File "/usr/local/lib/python3.4/dist-packages/tensorflow/python/pywrap_tensorflow.py", line 41, in <module> 
    from tensorflow.python.pywrap_tensorflow_internal import * 
    File "/usr/local/lib/python3.4/dist-packages/tensorflow/python/pywrap_tensorflow_internal.py", line 28, in <module> 
    _pywrap_tensorflow_internal = swig_import_helper() 
    File "/usr/local/lib/python3.4/dist-packages/tensorflow/python/pywrap_tensorflow_internal.py", line 24, in swig_import_helper 
    _mod = imp.load_module('_pywrap_tensorflow_internal', fp, pathname, description) 
    File "/usr/lib/python3.4/imp.py", line 243, in load_module 
    return load_dynamic(name, filename, file) 
ImportError: /usr/local/lib/python3.4/dist-packages/tensorflow/python/_pywrap_tensorflow_internal.so: wrong ELF class: ELFCLASS64 

During handling of the above exception, another exception occurred: 

Traceback (most recent call last): 
    File "<stdin>", line 1, in <module> 
    File "/usr/local/lib/python3.4/dist-packages/tensorflow/__init__.py", line 24, in <module> 
    from tensorflow.python import * 
    File "/usr/local/lib/python3.4/dist-packages/tensorflow/python/__init__.py", line 49, in <module> 
    from tensorflow.python import pywrap_tensorflow 
    File "/usr/local/lib/python3.4/dist-packages/tensorflow/python/pywrap_tensorflow.py", line 52, in <module> 
    raise ImportError(msg) 
ImportError: Traceback (most recent call last): 
    File "/usr/local/lib/python3.4/dist-packages/tensorflow/python/pywrap_tensorflow.py", line 41, in <module> 
    from tensorflow.python.pywrap_tensorflow_internal import * 
    File "/usr/local/lib/python3.4/dist-packages/tensorflow/python/pywrap_tensorflow_internal.py", line 28, in <module> 
    _pywrap_tensorflow_internal = swig_import_helper() 
    File "/usr/local/lib/python3.4/dist-packages/tensorflow/python/pywrap_tensorflow_internal.py", line 24, in swig_import_helper 
    _mod = imp.load_module('_pywrap_tensorflow_internal', fp, pathname, description) 
    File "/usr/lib/python3.4/imp.py", line 243, in load_module 
    return load_dynamic(name, filename, file) 
ImportError: /usr/local/lib/python3.4/dist-packages/tensorflow/python/_pywrap_tensorflow_internal.so: wrong ELF class: ELFCLASS64 

顺便说一句,我从官方tensorflow网站上安装Python 3.4上的覆盆子pi 2。 我卸载了包括numpy在内的所有tensorflow依赖关系,并进行了安装。这安装了所有的依赖关系,但花了大约一个小时。它还说:

Could not find .egg-info directory in install record for numpy>=1.11.0 (from tensorflow==1.2.0) 

和:

Could not find .egg-info directory in install record for protobuf 

然后导入tensorflow时,它给我的第一个错误。

回答

0

您错误_pywrap_tensorflow_internal.so: wrong ELF class: ELFCLASS64意味着您正尝试将64位代码加载到32位进程中。
你有什么操作系统? guy已成功安装Raspberry Pi 2上的tensorflow。 您也可以尝试this package
请注意,运行Raspberry 2不是简单的任务。你使用了什么官方tensorflow网站?
至于egg-info警告,请尝试使用pip install --upgrade setuptools pip升级setuptools。