-
-
Notifications
You must be signed in to change notification settings - Fork 10
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
Support for Alpine Linux #140
Comments
Okay. I did some research. Alpine linux does not use glibc but uses musl libc. Currently all our wheels use glibc. Quote google AI:
Currently we are using manylinux image to build wheels, that's why no wheel works for alpine for now. |
Can't build musl wheels for the moment due to dynamic linking of clang-sys.
LLVM needs to be built as static lib, first of all. Then, Related issues: rust-lang/rust-bindgen#2360 @1Const1 Pull requests are welcome. |
Completed via #155 |
FROM python:3.12.4-alpine3.20
RUN python3.12 -m pip install --upgrade pip
&& python3.12 -m pip install rocksdict
Successfully installed pip-24.1.2
Same error here - ERROR: No matching distribution found for rocksdict
or - Could not find a version that satisfies the requirement rocksdict (from versions: none)
Connected issue: #86
compiled on x86
How to solve it?
Perfectly works only on Debian image
The text was updated successfully, but these errors were encountered: