[PyQt] pkg_resources error....

lloyd konneker bootch at nc.rr.com
Mon Nov 16 15:20:56 GMT 2015


You should probably wait for an answer from Ilya, but here is an educated guess:

pyqtdeploy implements a ‘loader’, that loads packages anytime an import statement is executed by the Python interpreter, from the special place/encoding that pyqtdeploy has bundled all the packages that your app uses.

You can search for ‘PEP302’ and within that document search for ‘get_data’.  Basically it says that method is optional, and from what Ilya said, pyqtdeploy’s implementation of the loader API did not implement that optional method.  You could look for that method definition in the source for pyqtdeploy’s implementation, since it is all open source.

I can’t speak to why in your particular circumstances the get_data method is needed.

Again, I could be wrong.


More information about the PyQt mailing list