Forums

ImportError: No module named cloud

what is the problem? http://prntscr.com/qrs1fy

Sorry if this is a silly question, but do you have the google.cloud module installed (using pip3.7 install --user or a virtualenv), as described on this help page.

If you definitely do, then a way to track down this problem would be firstly to try running the exact command that you have scheduled in a Bash console and see if it repros there. If it does, then try adding lines at the top of your file to make sure that you're picking up the right google module (and not, say, some file that you happen to have in your storage called google.py):

import google
print(google.__name__)

That might help narrow things down a bit.

thanks for the answer, I found the reason and it seems that everything is working. Have a nice day.