jkukul commented on issue #22218: URL: https://github.com/apache/beam/issues/22218#issuecomment-1182024641
Another workaround is to use an older version of `pip`. Older versions (before `21.3`) somehow don't force the installation of `google-api-core 2.8.2`. Or, rather, an older `pip` seems to be able to faster figure out the working version of dependencies. In your `Dockerfile` change: ``` RUN pip install --upgrade pip ```` to: ``` pip install pip==21.2.4 ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
