Я пытался установить mod_wsgi, настроенный для Python 3.2, на компьютере CentOS, и я продолжаю сталкиваться с ошибкой:
/usr/bin/ld: не удается найти -lpython3.2
Насколько я могу судить, это вызвано отсутствием libpython3.2.so
или его эквивалента, но я не могу понять, как создать этот файл.
Некоторые соответствующие данные:
- Python установлен на 3.2, загружен с python.org как
tar.bz2
md5sum
изPython-3.2.tar.bz2
совпадает с тем на Python.org- Эта проблема возникает как с версией mod_wsgi из репозитория hg, так и с
mod_wsgi-3.3.tar.gz
(Я понимаю, что это также может быть вопрос о сбое сервера, но этот форум казался более интуитивным).
(Вывод ниже для справки)
[root@<>mod_wsgi-3.3]# ./configure PYTHON=/usr/local/bin/python3.2
checking for apxs2... no
checking for apxs... /usr/sbin/apxs
checking Apache version... 2.2.3
configure: creating ./config.status
config.status: creating Makefile
[root@<> mod_wsgi-3.3]# make
... (I will include this if requested, but it makes it easier to
read if this is removed)
mod_wsgi.c:7154: warning: 'wsgi_set_py3k_warning_flag' defined but not used
mod_wsgi.c:7856: warning: 'wsgi_set_user_authoritative' defined but not used
mod_wsgi.c:14414: warning: 'wsgi_hook_check_user_id' defined but not used
/usr/lib/apr-1/build/libtool --silent --mode=link gcc -o mod_wsgi.la -rpath /usr/lib/httpd/modules -module -avoid-version mod_wsgi.lo -L/usr/local/lib
-L/usr/local/lib/python3.2/config -lpython3.2 -lpthread -ldl -lutil -lm
/usr/bin/ld: cannot find -lpython3.2
collect2: ld returned 1 exit status
apxs:Error: Command failed with rc=65536
.
make: *** [mod_wsgi.la] Error 1
[root@<> mod_wsgi-3.3]#