Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- word embedding
- 인공지능
- naver movie review
- Word2Vec
- NLP
- 석사
- 우울증
- 전처리
- 수기
- 대학원
- pytorch
- sentiment analysis
- 품사태깅
- Classification Task
- CUDA
- 자연어처리
Archives
- Today
- Total
슬기로운 연구생활
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1 본문
슬기로운 에러 생활
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
vhrehfdl 2022. 11. 22. 10:34에러메시지 : error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
에러원인 : Docker에서 Polygon3를 설치하려고 했는데 계속 알 수 없는 에러가 났다.
의존성 문제인 것 같았는데 에러메시지를 자세히 보니 gcc가 보였다.
그래서 c관련 기본 패키지가 없다고 생각했고 기본 환경 세팅 부분을 체크했다.
ubuntu 18.04 이미지를 끌어와서 내 환경을 세팅하는데.. python 관련 설정이 부족하게 세팅되어 있었나보다.
해결방법 : 자신의 python 버전에 맞는 dev 환경을 세팅해준다. (python3-dev로도 하니까 안되서 구체적인 버전을 명시했다.)
apt-get -y install python3.8-dev
'슬기로운 에러 생활' 카테고리의 다른 글
Missing or invalid credentials. (1) | 2022.11.23 |
---|---|
If this call came from a _pb2.py file, your generated code is out of date and must be regenerated with protoc >= 3.19.0. (0) | 2022.11.22 |
ModuleNotFoundError: No module named 'paddle' (0) | 2022.11.16 |
FatalError: Segmentation fault is detected (0) | 2022.11.16 |
Please make sure you have the correct access rights and the repository exists. (0) | 2022.10.29 |
Comments