Install wxPython in osx 10.11

前端 未结 7 1099
我在风中等你
我在风中等你 2021-02-06 05:39

When I try to install wxPython, it shows an error:

> The Installer could not install the software because there was no
> software found to in         


        
7条回答
  •  忘掉有多难
    2021-02-06 06:02

    Found a Solution for this issue :

    Error :

    mac01:tools ganeshr$ ride.py

    Wrong wxPython version. You need to install wxPython 2.8.12.1 with unicode support to run RIDE. wxPython 2.8.12.1 can be downloaded

    Solution : - Add supported_versions.append("3.0") support in robotide/__init__.py

    Check wxPython is Installed:

    $ pip list

    wxPython (3.0.2.0) wxPython-common (3.0.2.0)

    $ sudo vim /Library/Python/2.7/site-packages/robotide/__init__.py

    try: import wxversion

    from wxversion import VersionError

    if sys.platform == 'darwin':

    supported_versions.append("2.9")

    supported_versions.append("3.0") # Add this line, the RIDE will support wxPython (3.0.2.0)

    wxversion.select(supported_versions) import wx

    Thanks.

提交回复
热议问题