google-api-core distribution not found
See original GitHub issueHi,
I have installed the library using
pip install --upgrade google-api-python-client
Into my virtual env. Everything is working just fine. Although when I push to production and have my build server install packages from the requirements.txt file, I get the error.
The 'google-api-core' distribution was not found and is required by the application
Although, I can see that the package has been installed (or so the build logs say).
Production Env: Using Seed + Serverless
Any help would be great!
Issue Analytics
- State:
- Created 6 years ago
- Comments:10 (5 by maintainers)
Top Results From Across the Web
The 'google-api-python-client' distribution was not found and ...
I am currently trying to build an app with pyinstaller. I have gotten the error The 'google-api-python-client' distribution was not found and is ......
Read more >google-api-core - PyPI
This library is not meant to stand-alone. Instead it defines common helpers used by all Google API clients. For more information, see the...
Read more >[Fixed] ModuleNotFoundError: No module named 'google-api ...
Quick Fix: Python raises the ImportError: No module named 'google-api-core' when it cannot find the library google-api-core . The most frequent source of ......
Read more >Solving 'google-api-python-client' distribution was not found ...
For a project I need to use google-api-python-client package, although I installed it through pip at the runtime I receive this error:
Read more >Source code for google.api_core.exceptions
"""Exceptions raised by Google API core & clients. ... [docs]class NotFound(ClientError): """Exception mapping a ``404 Not Found`` response or a :attr:`grpc ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I was having the same issue. After upgrading pip via
pip install --upgrade pip
, the error went away.@tomonodes I think the responder on the original issue recommend you file the issue in https://github.com/serverless/serverless-google-cloudfunctions.
When you file issues on this repo in the future, please open a new issue rather than posting on a closed issue. Maintainers are more likely to miss posts to closed issues. Thanks!