Linux安装Python GUI库 wxPython
2020-05-23 本文已影响0人
米酒真香
https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-18.04/
pip install -U wxPython
是不行的
试试 sudo apt install python-wxtools
测试以下代码:
import wx
app = wx.App(False) #创建1个APP,禁用stdout/stderr重定向
frame = wx.Frame(None, wx.ID_ANY, "Hello, World!") #这是一个顶层的window
frame.Show(True) #显示这个frame
app.MainLoop()
如果报错libjpeg.so.8: cannot open shared object file: No such file or directory
https://blog.csdn.net/weixin_41587491/article/details/105479822
sudo apt-get install libjpeg9