I have a python program which I'm trying to build a new single exe package for. I've done this previously with out an issue, but recently I added some features which make use of the google api python client and now when I run my packaged up program I get the following error message:
pkg_resources.DistributionNotFound: google-api-python-client > I added the following to my spec file: hiddenimports=['googleapiclient', 'apiclient'] And when I run the build I can see that it picks these up: 53092 INFO: Hidden import 'googleapiclient' has been found otherwise > 53093 INFO: Hidden import 'apiclient' has been found otherwise I've done some reading about hooks, but I'm not sure that is the solution. Can anyone shed any light on what is going on here? I've failed to find anything in a good few hours of googling..... surely I can't be the only person to have ever wanted to package up a python app that makes use of the google api...... -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pyinstaller. For more options, visit https://groups.google.com/d/optout.
