2013-04-13 36 views
0

我在Ubuntu 12.10中從源代碼安裝了Python 3.3.1和Apache 2.4.4。如何在Python 3.3.1中使用WSGI 3.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 

我不知道該如何處理它。 感謝您的幫助!

回答

1

修改生成的Makefile並將'-lpython3.3'更改爲'-lpython3.3m'。然後再次建立。

相關問題