Umer
Umer

Reputation: 1148

No module named 'google.api_core.client_options' while importing firestore

I am trying to use Firestore with Python . I have successfully installed the google-cloud-firestore. But when I am trying to import the library using from google.cloud import firestore . It is throwing me the error

No module named 'google.api_core.client_options'

Note: I am not using the virtualenv Is there any way i can resolve this

Upvotes: 1

Views: 12029

Answers (1)

Juan Lara
Juan Lara

Reputation: 6854

Try upgrading the google-api-core library:

/path/to/pip install --upgrade google-api-core

Upvotes: 4

Related Questions