I am using py2exe to compile a set of scripts that rely on the Google Cloud Python API. After compiling, when I run an executable, the following error displays:
...
File "<script_name>.py", line xx, in <module>
import google.cloud
ImportError: No module named google.cloud
I have done some Googling on the general "ImportError" with py2exe, and the answers I am finding do not seem to apply to my problem.
Any thoughts?