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
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.