wxPython import error

后端 未结 10 1077
Happy的楠姐
Happy的楠姐 2021-02-05 17:56

I\'m having trouble figuring out an error message in Python.

yesterday, I\'ve installed python using the latest EPD package, and wxPython2.9 using the wxPython2.9-osx-co

10条回答
  •  不知归路
    2021-02-05 18:40

    Select your wx version before importing any wx modules

    import wxversion
    wxversion.select('2.8')

    The above code should come before import wx

提交回复
热议问题