Skip to content

How to build for manylinux_2_28_x86_64? #1194

Answered by messense
0xDmtri asked this question in Q&A
Discussion options

You must be logged in to vote

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 run build --release in it which obviously does not work because there isn't an build executable in it. For running maturin you should use docker 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.

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@0xDmtri
Comment options

Answer selected by messense
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants