How to Compile and Install wxWidgets on Ubuntu/Debian/Linux Mint
wxWidgets is a cross platform gui library for developing native desktop apps. This quick tutorial shows you how to compile and install it on Ubuntu, Debian and Linux Mint
wxWidgets is a cross platform gui library for developing native desktop apps. This quick tutorial shows you how to compile and install it on Ubuntu, Debian and Linux Mint
wxwebconnect is a control for wxwidgets that allows to embed a gecko browser in a wxwidgets application. So lets try to install it on Ubuntu 11.04 wxWidgets can be installed from synaptic. Look for packages called libwxgtk2.8-* 1. Download wxwebconnect source from http://www.kirix.com/labs/wxwebconnect/downloads.html Extract them in home directory. Inside the webconnect directory you would see… Read More »
wxpython While executing a wxpython script if a error occurs then a white window popups with some message, and it disappears fast enough before it can be read. So here is a fix to pause it and read it what and where the error in the code is : app = wx.App(redirect=False) MyFrame(None).Show() app.MainLoop() The… Read More »