Phoenix: undefined symbol: PyObject_Unicode

In my (Ubuntu 12.4, 64 Bit) Build is the undefined symbol: PyObject_Unicode.

egon@Ubuntu12:~$ python3
Python 3.2.3 (default, Oct 19 2012, 20:10:41)
[GCC 4.6.3] on linux2
Type “help”, “copyright”, “credits” or “license” for more information.

import wx
Traceback (most recent call last):
File “”, line 1, in
File “/home/egon/Entwicklung/testbuild2/Phoenix/wx/init.py”, line 17, in
from wx.core import *
File “/home/egon/Entwicklung/testbuild2/Phoenix/wx/core.py”, line 6, in
from ._core import *
ImportError: /home/egon/Entwicklung/testbuild2/Phoenix/wx/_core.so: undefined symbol: PyObject_Unicode
quit()
egon@Ubuntu12:~$

This module was built for Python 2.

You should use Python 3 to build a python3-compatible version of wxPython.

···

2012/12/19 Egon Frerich egon.frerich@gmx.de

In my (Ubuntu 12.4, 64 Bit) Build is the undefined symbol: PyObject_Unicode.

egon@Ubuntu12:~$ python3
Python 3.2.3 (default, Oct 19 2012, 20:10:41)
[GCC 4.6.3] on linux2
Type “help”, “copyright”, “credits” or “license” for more information.

import wx
Traceback (most recent call last):
File “”, line 1, in
File “/home/egon/Entwicklung/testbuild2/Phoenix/wx/init.py”, line 17, in

from wx.core import *

File “/home/egon/Entwicklung/testbuild2/Phoenix/wx/core.py”, line 6, in
from ._core import *
ImportError: /home/egon/Entwicklung/testbuild2/Phoenix/wx/_core.so: undefined symbol: PyObject_Unicode


Amaury Forgeot d’Arc