-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to install pyheif on docker container with Ubuntu 18.04 on M1 Mac #47
Comments
I found a workaround using the dockerfile in your repo to build the incompatible libraries inside my container but it's a bit clumsy. For reference these are the lines I used:
|
Ran into the same issue. The workaround was effective. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
I'm trying to install
pyheif
overpip
on a docker container runningUbuntu 18.04
. The docker is hosted on M1 Mac which means the CPU architecture isaarch64/armv8
which apparently isn't compatible with thearmv7l
or at leastpip
won't let me use that wheel.This is effectively Ubuntu 18.04 on armv8.
pip
probably attempts to build a wheel for my platform but this fails with the following error, indicating incompatible libraries:I also tried your instructions to build the package from the source but it produced the same error. In the end, I managed to get the thing installed by running your dockerfile steps that manually build the correct versions of the dependencies.
Could we have a wheel for
aarch64/armv8
?The text was updated successfully, but these errors were encountered: