-
I tried It all went well until the very end where I got the following error: Status: Downloaded newer image for quay.io/pypa/manylinux_2_28_x86_64:latest Would anyone help please? Many thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
It seems that you are running on arm64 platform, but the
|
Beta Was this translation helpful? Give feedback.
It seems that you are running on arm64 platform, but the
quay.io/pypa/manylinux_2_28_x86_64:latest
is x86_64 only, so docker might try to use QEMU to emulate x86_64 for you.docker run --rm -v $(pwd):/io quay.io/pypa/manylinux_2_28_x86_64 build --release
this command is wrong, you are trying to runbuild --release
in it which obviously does not work because there isn't anbuild
executable in it. For running maturin you should usedocker run --rm -v $(pwd):/io quay.io/pypa/manylinux_2_28_x86_64 maturin build --release
, but you will need to install maturin in it first.