Reputation: 1148
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
Reputation: 6854
Try upgrading the google-api-core library:
/path/to/pip install --upgrade google-api-core
Upvotes: 4