我有一个 centos 6 服务器,我正在尝试配置 apache + wsgi + django 但我不能。因为我的系统有 Python 2.6 并且我使用 Python2.7.5,所以我无法安装 yum。我正在下载一个 tar 文件并尝试使用以下命令进行编译:
./configure --with-python=/usr/local/bin/python2.7
但不起作用。系统响应:
/usr/bin/ld: /usr/local/lib/libpython2.7.a(abstract.o): relocation R_X86_64_32 against `.rodata.str1.8' can not be used when making a shared object; recompile with -fPIC
我不明白我必须在哪里使用-fPIC
. 我正在执行:
./configure -fPIC --with-python=/usr/local/bin/python2.7
但不起作用。
谁能帮我?