From: Chris G. <cl...@is...> - 2016-02-17 21:53:06
|
On Wed, Feb 17, 2016 at 02:49:28PM -0500, Mario Lacunza wrote: > Yes I opened that bug report in 2014 but its not fixed yet and the > workaround dont work :( thanks! > After a bit of playing around I can get the "import wx.html2" to work OK. On my [x]ubuntu 15.10 system I had install the libwxgtk-webview3.0-0v5 package:- apt-get install libwxgtk-webview3.0-0v5 Then get it into the library search path:- export LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libwx_gtk2u_webview-3.0.so.0.2.0 ...and then I can import wx.html2:- chris$ python Python 2.7.10 (default, Oct 14 2015, 16:09:02) [GCC 5.2.1 20151010] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import wx.html2 >>> -- Chris Green |