I can't start successfully boa constructor in windows7

421 views Asked by At

When I start boa-constructor(boa-constructor-0.6.1.src.win32.exe) from the command line by starting the script "Boa.py", I got the message says

enter image description here

My python version is "python-2.7.7.msi" and I download wxPyton "wxPython3.0-win32-3.0.0.0-py27.exe" O searched for files that contains the string "NO_3D " but I didn't get any can you help me pleaze and thanks

1

There are 1 answers

3
nepix32 On BEST ANSWER

Actually you will require wxPython 2.8.12.1 to not get this error.

>>> import wx
>>> wx.__version__
'2.8.12.1'
>>> wx.NO_3D
0

This is a pity, because the operation …|wx.NO_3D is actually a No-Op. So you could fix this particular issue by defining wx.NO_3D somewhere.

On 2.9.5:

>>> import wx
>>> wx.__version__
'2.9.5.0'
>>> wx.NO_3D
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'NO_3D'