尼玛真是头疼。
在安装好numpy、scipy、theano后。
在python代码中,敲入:import theano,报错如下:
Problem occurred during compilation with the command line below:
g++ -shared -g -m64 -fPIC -I/usr/local/lib/python2.7/site-packages/numpy/cor
e/include -I/usr/local/include/python2.7 -o /root/.theano/compiledir_Linux-2
.6.18-308.el5-x86_64-with-redhat-5.8-Tikanga-x86_64-2.7.3-64/lazylinker_ext/
lazylinker_ext.so /root/.theano/compiledir_Linux-2.6.18-308.el5-x86_64-with-
redhat-5.8-Tikanga-x86_64-2.7.3-64/lazylinker_ext/mod.cpp -L/usr/local/lib -
lpython2.7
/usr/bin/ld: /usr/local/lib/libpython2.7.a(abstract.o): relocation R_X86_64_
32 against `a local symbol' can not be used when making a shared object; rec
ompile with -fPIC
/usr/local/lib/libpython2.7.a: could not read symbols: Bad value
collect2: ld returned 1 exit status
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "theano/__init__.py", line 55, in <module>
from theano.compile import \
File "theano/compile/__init__.py", line 5, in <module>
from theano.compile.function_module import *
File "theano/compile/function_module.py", line 18, in <module>
import theano.compile.mode
File "theano/compile/mode.py", line 11, in <module>
import theano.gof.vm
File "theano/gof/vm.py", line 486, in <module>
import lazylinker_c
File "theano/gof/lazylinker_c.py", line 89, in <module>
preargs=args)
File "theano/gof/cmodule.py", line 1829, in compile_str
(status, compile_stderr.replace(b('\n'), b('. '))))
Exception: Compilation failed (return status=1): /usr/bin/ld: /usr/local/lib
/libpython2.7.a(abstract.o): relocation R_X86_64_32 against `a local symbol'
can not be used when making a shared object; recompile with -fPIC. /usr/loc
al/lib/libpython2.7.a: could not read symbols: Bad value. collect2: ld retur
ned 1 exit status.
仔细分析错误代码之后,定位原因在于,
python在编译时,libpython2.7.a库中的abstract.o模块的编译过程中,没有加上-fPIC;
按照网上的方法,各种在python编译过程中加上-fPIC参数,都没有解决;
最后仔细看make命令的输出结果,发现abstract.o模块根本就没有经过编译。
继续最终,发现Python的源码路径中Object下,abstract.c和abstract.o都存在,而且这个文件是下载python包是就已经编译好了的(生成了.o文件);
然后删除所有.o文件,然后重新make,在make,就有abstract.o的编译过程了。
尼玛,这个问题整整搞了我10个小时,不知道能不能完全解决。
------------
尼玛,就知道没有那么容易,后来又报另外一个包需要重新编译。
然后我把Python源码目录中所有自带的.o文件删了,然后就ok啦。。。
安装命令如下:
./configure --prefix=/usr/local/ –enable-shared CFLAGS=-fPIC
make
make install
分享到:
相关推荐
### 解决Python安装cryptography报错问题 在Python开发中,`cryptography`是一个非常重要的库,用于处理加密、解密、哈希等安全相关的功能。然而,在安装过程中可能会遇到各种错误,尤其是在不同操作系统(如Linux...
这个库可以解决如下编译错误问题! /usr/bin/ld: libboost_python.a(from_python.o): relocation R_X86_64_32 against `.rodata.str1.8' can not be used when making a shared object; recompile with -fPIC ...
Python简单神经网络这是一个带有C后端的NeuralNetwork库,非常...尽管它可能是一个python库,但它也可以在C语言中使用(有关使用神经网络解决的XOR问题,请参见MainXOR.c)。汇编这将为python接口编译C后端库gcc -fPIC
g++ -shared -fPIC -O3 -std=c++11 -I/usr/include/python3.7 -lpython3.7m -o lib_cpp_demo.so cpp_demo.cpp ``` 在Python中,你可以直接导入并使用这个C++类: ```python import cppyy cpp_lib = cppyy.load_...
本案例提供了解决这一需求的四种不同方法,适用于那些希望在Python中调用C或C++代码的开发者。下面我们将详细探讨这些方法及其实施步骤。 1. **使用ctypes模块**: ctypes是Python的标准库之一,它允许Python程序...
虽然Lua本身没有内置的包管理系统,但社区发展了一些解决方案,如luarocks,它类似于Python的pip,用来安装、管理和更新Lua模块。 “pkgconfig”是Unix/Linux环境下用来管理编译链接依赖的工具,它通过提供一个统一...
4. C++中的名称修饰(name mangling)问题及解决方案。 5. Python的`ctypes`模块在动态链接库调用中的应用。 6. 理解和修正由OCR技术导致的文档错误。 7. 计算机视觉和AI领域中性能和易用性编程实践的结合。 这些...
Boost库是C++编程语言的一个开源库集合,它提供了...这些组件在开发过程中能极大地提升效率,简化复杂问题的解决,使代码更加简洁和可维护。在Linux环境下,正确编译和使用Boost库能够为C++开发者带来强大的功能支持。
在本文中,我们将详细介绍如何在 CentOS 6.9 上安装 FreeSWITCH 1.6.18 版本,并针对安装过程中遇到的一些常见问题提供解决方案。FreeSWITCH 是一个开源的多协议软交换平台,用于构建电信应用程序和服务。 #### ...
解决这个问题的一种方法是使用`ldd`工具来检查Python可执行文件的动态库依赖关系,就像描述中所展示的那样: ``` $ ldd /usr/local/bin/python3.6 ``` 如果`ldd`显示`libpython3.6m.so.1.0`未找到,那么可以通过...
### OpenCV 移植到 ARM 的详细步骤及常见问题解决 #### 一、概述 OpenCV(Open Source Computer Vision Library)是一款开源计算机视觉库,它包含了大量的图像处理、机器视觉和计算机视觉领域的算法。OpenCV 支持...
为了解决这个问题,我们可以利用SWIG(Simplified Wrapper and Interface Generator)这个工具作为桥梁,实现Go语言与C++的无缝对接。 SWIG是一个开源的接口生成器,它可以自动生成C、C++、Java、Python等多语言...