Installing wxpython on ubuntu 14.04

后端 未结 7 1756
天命终不由人
天命终不由人 2021-01-23 04:11

When I try to open PlayOnLinux from the commandline, I get this error:

Looking for python... 2.7.8 - selected
Traceback (most recent call last):
  File \"mainwin         


        
相关标签:
7条回答
  • 2021-01-23 05:04

    Before that install gtk3

    $ sudo apt-get install libgtk-3-dev
    

    If you are facing problem to install wxpython on Python3 please use this command to install wxpython

    $ pip install -U -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-16.04 wxPython
    

    By this command you can install latest wxPython4 version. If you are using Windows or macOS

    $ pip install -U wxpython
    

    If you are using Anaconda/Conda

    $ conda install -C anaconda wxpython
    
    0 讨论(0)
提交回复
热议问题