Ubuntu – PlayOnLinux won’t start

playonlinuxpython

When I click on the icon nothing happens. In the terminal when I run playonlinux I get the following.

ImportError: No module named wxversion
Looking for python... 2.7.7 - selected
Traceback (most recent call last):
  File "mainwindow.py", line 31, in <module>
    import wxversion
ImportError: No module named wxversion

Best Answer

You probably need to install wxpython. Use the following command:

$ sudo apt-get install python-wxgtk2.8
Related Question