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
Is your feature request related to a problem? Please describe.
I'm trying to build a docker container with PyMuPDF but unfortunately I can't get it to work on my Mac M1.
Describe the solution you'd like
My Dockerfile looks like this
FROM python:3.10-bullseye
RUN apt-get update && apt-get install --no-install-recommends -y mupdf
RUN pip3 install --upgrade pip
RUN pip3 install pymupdf
When I run docker build . then I get the following error
I cannot help you here. I have no Mac machine and also no M1.
The CI service of Github only supports Mac on Intel servers, and does not support docker services in this case.
Your error is fairly typical for building from sources: it always occurs when setup.py cannot find the libraries of the installed MuPDF.
There also has been quite some discussion going on about M1 support here. I will turn this issue into a discussion and put it close to those other comments.
You are more than welcome to develop something that can help other M1 users to more easily install PyMuPDF.
Is your feature request related to a problem? Please describe.
I'm trying to build a docker container with
PyMuPDF
but unfortunately I can't get it to work on my Mac M1.Describe the solution you'd like
My Dockerfile looks like this
When I run
docker build .
then I get the following errorAdditional context
I've also questioned this in this closed thread but I thought it was better to start a new issue instead.
The text was updated successfully, but these errors were encountered: