-
Notifications
You must be signed in to change notification settings - Fork 330
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
Failing to install llvmlite on Raspberry Pi 4 #622
Comments
Thank you very much! I ran My original was problem solved so I am closing this issue, but if you know of a way to get berryconda to work for python 3.7+, please let me know. |
I tried berryconda, miniconda but getting no success in installing llvmlite package. I am having ARMv7I architecture. |
pi@raspberrypi:~ $ conda install llvmlite PackageNotFoundError: Package missing in current linux-aarch64 channels:
Traceback (most recent call last): error: command '/home/pi/berryconda3/bin/python' failed with exit status 1ERROR: Failed building wheel for llvmlite
ERROR: Command errored out with exit status 1: /home/pi/berryconda3/bin/python -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-t1xx2jb4/llvmlite_98f0b002214d4beda34d73dca17ab8a9/setup.py'"'"'; file='"'"'/tmp/pip-install-t1xx2jb4/llvmlite_98f0b002214d4beda34d73dca17ab8a9/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(file) if os.path.exists(file) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, file, '"'"'exec'"'"'))' install --record /tmp/pip-record-hp798ma9/install-record.txt --single-version-externally-managed --compile --install-headers /home/pi/berryconda3/include/python3.6m/llvmlite Check the logs for full command output. |
I am trying to install
llvmlite
on my Raspberry Pi 4 (Model B).When I try
pip3 install llvmlite
I get this:The docs mention that I don't need to install LLVM, but I tried
apt-get install llvm
anyway. It didn't seem to help. I am primarily a Windows user so I am not that familiar withapt-get
but I also triedapt-get install llvm=10.0.0
, but I received an error:Version '10.0.0' for 'llvm' was not found
.I tried
pip3 install librosa==0.4.2
mentioned in an old issue, but that also seemed to do nothing useful.Do you have any suggestions for what else I could try?
The text was updated successfully, but these errors were encountered: