I can not import google.cloud.speech
from google.cloud import speech
I installed it using:
pip install
This results in an error below when importing from dir-name
ImportError: No module named google.cloud
the google package with all the additional package is present there, but without __ init __ .py in each additional package.
How to import these packages without adding __ init __ .py to the package folder?
PS: I also tried from __ future __ import absolute_import, but its not working.
source
share