mirror of
https://github.com/google/brotli.git
synced 2026-07-08 17:56:58 +00:00
Missing aarch64 wheels #385
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @odidev on GitHub (Apr 28, 2021).
Problem:
On aarch64 architecture,
pip install Brotlidownloads the source distribution of it and build it. Directly downloading the wheel file and installing the same is quite efficient rather than building and installing from the source code. Also, it requires development environments to be installed on the user's machine.Overall, it is painful to install
Brotlion aarch64 as it doesn't have aarch64 wheels on PyPi.Resolution:
pipshould be able to download aarch64 wheels from PyPi and install same.@eustas and team, please let me know your interest here. I can help you in building and uploading aarch64 wheels on PyPi.