I'm trying to run the following command in cloud sdk to send a command to cloud IOT
python3 main.py --send_command="$RESPONSE" --registry=REGISTRY NAME --device=DEVICE NAME --cloud_region=europe-west1 --project_id=PROJECT ID send-command
I am getting the following error message.
Traceback (most recent call last):
File "main.py", line 37, in <module>
from google.api_core.exceptions import AlreadyExists
ModuleNotFoundError: No module named 'google
I tried the following workarounds but had no luck.
pip install --upgrade google-api-core
pip install google-cloud
pip install google-cloud-vision
Have I missed any libraries?
Python version - Python 3.8.3