ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
I had the same problem as well. I fixed it by changing a line in /usr/lib/python2.7/site-packages/wx-2.8-gtk2-unicode/wx/lib:
Line 369: elif cairo.version_info < (1,9) or cairo.version_info == (1,10,8):
to
elif cairo.version_info >= (1,9) or cairo.version_info == (1,10,8):
Admittedly, this is a really poor way to solve the problem, but it worked for me and hasn't caused any problems (yet).