728x90
aarch64 configure: error: cannot guess build type; you must specify one
문제 발생 :
현재 EC2 메모리 최적화 인스턴스 ( arm64 ) 에서 konlpy 형태소 분석기 Mecab 설치시 오류 발생
리눅스에서 Konlpy 설치를 할때 다른 형태소 분석기는 pip로도 설치가 되지만 Mecab 은 따로 조치를 취해줘야한다.
공식 홈페이지에서는 git에 연동된 bash 파일을 읽어서 실행시키도록 권장하고있다.
https://konlpy.org/en/latest/install/
bash <(curl -s https://raw.githubusercontent.com/konlpy/konlpy/master/scripts/mecab.sh)
하지만 arm64 의 경우 위 명령어를 실행시키면
aarch64 configure: error: cannot guess build type; you must specify one
에러를 발생시킨다.
이에 대한 해결법은
./configure --build=aarch64-unknown-linux-gnu 를 적용하면 된다고 한다.
이렇게 얘기하면 뭘 어떻게해야할지 몰라 좀 더 연구해본 결과
위 bash 파일에 있는 ./configure 명령어 뒤에 옵션을 추가하라는 뜻이였다.
즉 위 파일을 그대로 읽어들이지말고 복사해서 파일로 저장한뒤 수정하고 그 bash 파일을 실행시키면 된다.
수정 완료 후 문제없이 설치완료!!
어려우신 분들을 위해 bash 파일은 업로드 해두겠습니다.
반응형
'Error Note' 카테고리의 다른 글
[Mac_M1]. tokenizer install error 해결하기 (0) | 2022.06.12 |
---|---|
[Mac_m1]. sentencepiece install error 해결하기 (0) | 2022.06.12 |
[mac_M1] . ImportError: dlopen - regex error (0) | 2021.10.20 |
[Tensorflow] . failed to create cublas handle: CUBLAS_STATUS_INTERNAL_ERROR (0) | 2021.04.08 |
[Error] Instance of 'SQLAlchemy' has no 'Column' member (no-member) 에러 해결하기(feat. VSCode) (0) | 2020.10.30 |