ImportError: No module named google.cloud

Python 2.7Python ImportGoogle Speech-ApiGoogle Cloud-Speech

Python 2.7 Problem Overview


I am unable to import google.cloud.speech

from google.cloud import speech

I have installed it using :

pip install --upgrade google-cloud-speech -t dir-name

It is giving me below error while importing it from dir-name

ImportError: No module named google.cloud

google package with all the sub package is present over there but without init.py in every sub packages as well.

How can I import this packages without adding init.py in package folder?

PS : I have also tried from future import absolute_import, but its not working.

Python 2.7 Solutions


Solution 1 - Python 2.7

The instructions on the "Cloud Speech API Client Libraries" documentation page are now valid and the install is successful, as desired.

I installed the library for Python on my Debian machine using the command:

pip install --upgrade google-cloud-speech

Solution 2 - Python 2.7

use this:

pip install google-cloud-bigquery

Solution 3 - Python 2.7

I used sudo python -m pip install google-cloud instead and it worked.

Solution 4 - Python 2.7

"No module named google.cloud" you need a python environment for google cloud.

pip install virtualenv
virtualenv <your-env>
source <your-env>/bin/activate
<your-env>/bin/pip install <google-cloud>

<google-cloud> replace this with required library. e.g: google-cloud-vision or google-cloud-storage, etc

<your-env> is a folder name, which is going to be store all python environment related things inside your project.

Solution 5 - Python 2.7

After many hours with the same problem, I discovered the solution: Import the library "get_messages" before importing something from "google.cloud". This worked in Python 3:

from google.api_core.protobuf_helpers import get_messages
from google.cloud import speech

Solution 6 - Python 2.7

Try this:

$ git clone https://github.com/GoogleCloudPlatform/google-cloud-python
$ cd google-cloud-python/speech
$ python setup.py install

According to Ref.

Solution 7 - Python 2.7

The google.cloud is deprecated post June 18, you should install specific extension of your package

pip install google-cloud-{x}

Use

Source: github discussion

Solution 8 - Python 2.7

After you install google-api-python-client, you have to specify what exact google cloud product you want to install.

So for pubsub it is:

$pip3 install --upgrade google-cloud-pubsub

Solution 9 - Python 2.7

I struggled with the same problem recently. 2 things solved it for me:

Installing the following packages

google-api-core==1.22.1 
google-auth==1.20.1
google-cloud-texttospeech==2.2.0
googleapis-common-protos==1.52.0
graphviz==0.13.2
greenlet==0.4.16
grpcio==1.31.0
gTTS==2.1.1
gTTS-token==1.1.3

If this doesn't work, try switching to Python 3.7

Solution 10 - Python 2.7

I ran into the same problem just recently. My error was caused because I hadn't enabled the Cloud Speech-to-Text API. I was able to do that in cloud console and the error was resolved.

Solution 11 - Python 2.7

type this command:

 pip show google-cloud

you should ee an output like this:

Name: google-cloud
Version: 0.34.0
Summary: API Client library for Google Cloud
Home-page: https://github.com/GoogleCloudPlatform/google-cloud-python
Author: Google Cloud Platform
Author-email: [email protected]
License: Apache 2.0
Location: c:\users\<user>\appdata\roaming\python\python37\site-packages
Requires:
Required-by:

then take the full location path and add it to PATH (env vars)

Solution 12 - Python 2.7

Run

pip install -r requirements.txt

with requirements .txt content being

google-cloud-datastore==1.15.0

Solution 13 - Python 2.7

None of the installs mentioned here helped me. Then I did the following and it worked:

pip install google-cloud-logging

Reference: https://pypi.org/project/google-cloud-logging/

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionnishithView Question on Stackoverflow
Solution 1 - Python 2.7GeorgeView Answer on Stackoverflow
Solution 2 - Python 2.7Gunjan PaulView Answer on Stackoverflow
Solution 3 - Python 2.7kgb26View Answer on Stackoverflow
Solution 4 - Python 2.7BiraView Answer on Stackoverflow
Solution 5 - Python 2.7luisdemarchiView Answer on Stackoverflow
Solution 6 - Python 2.7hxysayhiView Answer on Stackoverflow
Solution 7 - Python 2.7ItachiView Answer on Stackoverflow
Solution 8 - Python 2.7Muhammed ImdaadView Answer on Stackoverflow
Solution 9 - Python 2.7Sarthak MishraView Answer on Stackoverflow
Solution 10 - Python 2.7Miriah PetersonView Answer on Stackoverflow
Solution 11 - Python 2.7Atheel MassalhaView Answer on Stackoverflow
Solution 12 - Python 2.7Vignesh VickyView Answer on Stackoverflow
Solution 13 - Python 2.7DoraView Answer on Stackoverflow