728x90

라즈베리파이에 librosa를 설치하는 중 llvm설치에서 문제가 발생했다...

 

numba를 설치하면서 부터 llvm 버전이 10이나 9가 필요하다고 뜨는데

아무리 써치해서 나온 방법으로 llvm 버전 10을 다운받을래도 안되고 해맸다,,,

 

결국 수동으로 설치!

 

releases.llvm.org/download.html

 

LLVM Download Page

If you'd like access to the "latest and greatest" in LLVM development, please see the instructions for accessing the LLVM Git Repository. The major changes and improvements that the development version contains relative to the previous release are listed i

releases.llvm.org

라즈베리파이 비트를 확인하고 해당 버전에 맞게 수동으로 설치해주면 된다.

나의 라즈베리는 ARM32 비트이므로-

 

wget github.com/llvm/llvm-project/releases/download/llvmorg-10.0.1/clang+llvm-10.0.1-armv7a-linux-gnueabihf.tar.xz

 

입력해서 수동으로 다운 및 설치,,, 

꽤나 오래 걸린다 

 

설치 후에는 

 

tar -xvf clang*.xz
cd clang+llvm
(탭키 누르기)
sudo cp -R */usr/local

 

이렇게 입력해주면 설치가 완료!

 

 

 

 

+ Recent posts