You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 23, 2024. It is now read-only.
I recently spend 2 days attempting to get Google Cloud Debugger to work on a Python 3.6 container where in the end the problem was that the container was using the official python-alpine image. With Alpine Linux being so prevalent in container images, I'd have hoped that the cloud debugger would support these out of the box.
Is this possible, as the current solution I use (based on your example) is a lot more convoluted than just using pip install google-cloud-debugger
The text was updated successfully, but these errors were encountered:
Part of the debugger is written in C/C++ and requires being linked against a C stdlib.
The version we upload on PyPI uses glibc as per the PEP 513 standards.
Even if we distribute binaries for Alpine/musl, we couldn't upload to PyPI, and you wouldn't be able to get it with 'pip install' since there isn't an 'alpine' platform tag. pypa/manylinux#37
I recently spend 2 days attempting to get Google Cloud Debugger to work on a Python 3.6 container where in the end the problem was that the container was using the official python-alpine image. With Alpine Linux being so prevalent in container images, I'd have hoped that the cloud debugger would support these out of the box.
Is this possible, as the current solution I use (based on your example) is a lot more convoluted than just using
pip install google-cloud-debugger
The text was updated successfully, but these errors were encountered: