We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
pip install blosc on aarch64 / python3.5.2 errors out due to cpuinfo.py not having a match clause for aarch64.
pip install blosc
This is solvable by adding the following three lines:
+ elif re.match('^aarch64$', raw_arch_string): + arch = 'AARCH_64' + bits = 64
Cheers! Ian
The text was updated successfully, but these errors were encountered:
bf2f418
Done!
Sorry, something went wrong.
No branches or pull requests
pip install blosc
on aarch64 / python3.5.2 errors out due to cpuinfo.py not having a match clause for aarch64.This is solvable by adding the following three lines:
Cheers!
Ian
The text was updated successfully, but these errors were encountered: