I'm using LinuxMint (Ubuntu), but with apt I can only install wxpython vsersion up to 2.8.x. This is a memo of how to install wxpython3.x.
$ sudo apt-get install dpkg-dev build-essential python2.7-dev libwebkitgk-dev libjpeg-dev ligtiff-dev libgtk2.0-dev libsdl-dev libgstreamer-plugin-base0.10-dev libnotify-dev freeglut3 freeglut3-dev
$ git clone https://github/wxWidgets/Phoenix
$ cd Phoenix
$ git submodule init
$ git submodule update
$ sudo python build.py dox etg --nodoc sip build
$ python
>>> import wx
>>> wx.version()
'3.0.3 gtk2 (phoenix)'
Now I'm going to make Othello with wxPython.
Recommended Posts