Reputation: 11
I try to install Robot Framework RIDE to MAC(version 10.9.5) today.
when I try to open graphic tool RIDE and run ride.py.
I got return:
wxPython not found. You need to install wxPython 2.8 or 2.9 toolkit with unicode support to run RIDE. See http://wxpython.org for more information.
Actually, I have installed wxPython 2.8.12.1, and when I try to run "import wx" in python env, I can got wxPython information return.
Anyone know how should I open graphic tool RIDE? Thanks!
Upvotes: 0
Views: 7382
Reputation: 1111
This solution worked like a charm for me:
I went to this directory: /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/robotframework_ride-2.0a1-py2.7.egg/robotide
and then ran arch -i386 python __init__.py
,
It launched RIDE editor!
Upvotes: 0
Reputation: 157
On some Mac OS X (El Capitan, Yosemite) wxPython 2.8 just doesn't work. You need to install wxPython 3.0. For exaple from here:
But as RobotFramework-Ride 1.5 doesn't support wxPython 3.0 yet, you'll need to install RobotFramework-Ride 2.0 beta that is avaliable only by easy_install:
easy_install robotframework-ride
That works on my Yosemite.
Upvotes: 0
Reputation: 11
Finally, I re setup os for MAC, I know this is not good solution for this issue. List all detail steps below:
Upvotes: 1