0

我在 Ubuntu 12.10 中从源代码安装了 Python 3.3.1 和 Apache 2.4.4。

当我构建 WSGI 源代码时,它告诉我:

/usr/bin/ld: cannot find -lpython3.3
collect2: error: ld returned 1 exit status
apxs:Error: Command failed with rc=65536
.
make: *** [mod_wsgi.la] Error 1

我不知道如何处理它。感谢帮助!

4

1 回答 1

1

修改生成的Makefile,将'-lpython3.3'改为'-lpython3.3m'。然后重新构建。

于 2013-04-23T21:03:53.773 回答