O Playonlinux não será iniciado. Ubuntu 16.04

1

Quando tento iniciar o playonlinux, nada acontece graficamente.

Quando tento carregá-lo com o terminal, recebo:

Looking for python... 2.7.13 - Traceback (most recent call last):
  File "/usr/share/playonlinux/python/check_python.py", line 1, in 
    import os, wxversion
ImportError: No module named wxversion
failed tests
Looking for python2.7... 2.7.13 - Traceback (most recent call last):
  File "/usr/share/playonlinux/python/check_python.py", line 1, in 
    import os, wxversion
ImportError: No module named wxversion
failed tests
Looking for python2.6... 
Looking for python2... 2.7.13 - Traceback (most recent call last):
  File "/usr/share/playonlinux/python/check_python.py", line 1, in 
    import os, wxversion
ImportError: No module named wxversion
failed tests
Please install python before trying to run this program

Quando eu corro:

python --version 

Isso mostra que eu tenho python 2.7.13

Eu também tentei usar soluções do seguinte link sem qualquer sorte.

  

O PlayOnLinux não será iniciado

    
por fastenedrex 09.04.2017 / 22:58

1 resposta

3

Para qualquer pessoa que tenha esse problema, aqui está sua solução.

Se você tentar executar o playonlinux e receber este erro:

ImportError: No module named wxversion
failed tests 
Please install python before trying to run this program

Edite este arquivo:

  

/ usr / share / playonlinux / bash / find_python

Altere o seguinte de:

            next_python "python"
            next_python "python2.7"
            next_python "python2.6"
            next_python "python2"
            next_python "none"

para:

            next_python "/usr/bin/python" #<<This line was added
            next_python "python"
            next_python "python2.7"
            next_python "python2.6"
            next_python "python2"
            next_python "none"

E é isso!

    
por fastenedrex 10.04.2017 / 03:13