I am new to Linux and trying to run a Python script that needs the following: 'from google.cloud import pubsub'
I'm getting the following error:
Traceback (most recent call last):
File "file.py", line 2, in <module>
from google.cloud import pubsub
ImportError: No module named google.cloud
How can I give access to this module? I have installed Google's Cloud SDK. I assume it has something to do with providing the path to this SDK "module" in some file?