You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just answered that stackoverflow post, but here's a slightly modified response for Ubuntu:
NotImplementedError means that wxPython was compiled without wx.html2 support. The most likely cause of this on Linux is that the WebKit2 development packages were not present when you installed/compiled wxPython. To resolve this, install the WebKit2 development package and reinstall wxPython. On Ubuntu, the WebKit2 development package is libwebkit2gtk-4.0-dev, so install it with the package manager, e.g., apt install libwebkit2gtk-4.0-dev and then uninstall/reinstall wxPython. Note: you may have to also clear the pip cache so that it won't re-use the previously compiled version of wxPython.
Operating system: Ubuntu 20.04
wxPython version & source: 4.1.1 gtk3 (phoenix) wxWidgets 3.1.5 (built wheel from PyPi).
Python version & source: Python 3.9.5.
Description of the problem
I'm trying to implement a loading spinner animation as html and css into a
wx.html2.WebView
but I'm gettingNotImplementedError
.I've found two other persons having the same issue: Chapter 6: NotImplemented and Why is it not available in CentOS wx.html2 . WebView control?
Code Example (click to expand)
The text was updated successfully, but these errors were encountered: