您好我正在使用mod_wsgi
和virtualenv
在python3.6
中汇编apache2.4
。
我已经有另外virtualenv
python3.5
和mod_wsgi
工作了。
使用virtualenv
编译我的新python3.6
并使用:
./configure --with-python=/home/fgthct/.virtualenv/djangodev/bin/python
这会生成Makefile
。当我运行make
时,我终于得到以下错误:
/usr/bin/ ld: /usr/local/lib/libpython3.6m.a(abstract.o): relocation R_X86_64_32S against `_Py_NotImplementedStruct 'can not be used when making a shared object; recompile with -fPIC
/usr/local/lib/libpython3.6m.a: error adding symbols: Wrong value
collect2: error: ld returned 1 exit status
error: command 'gcc' failed with exit status 1.
我重申我已经有另一个virtualenv
与python3.5
并且它有效。
提前感谢那些想要帮助我的人。
Fgthct