티스토리 뷰
개발/python
[PIP] gcc: error trying to exec 'cc1plus': execvp: No such file or directory 오류 해결방법
정선생 2023. 6. 6. 00:00반응형
pip install sasl 을 설치하는데 아래와 같은 오류가 발생했다. 이 문제를 해결하려면 gcc-c++ 을 설치하면 해결된다.
....
#0 0.969 creating build/temp.linux-aarch64-2.7
#0 0.969 creating build/temp.linux-aarch64-2.7/sasl
#0 0.969 gcc -pthread -fno-strict-aliasing -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -D_GNU_SOURCE -fPIC -fwrapv -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -D_GNU_SOURCE -fPIC -fwrapv -fPIC -Isasl -I/usr/include/python2.7 -c sasl/saslwrapper.cpp -o build/temp.linux-aarch64-2.7/sasl/saslwrapper.o
#0 0.969 gcc: error trying to exec 'cc1plus': execvp: No such file or directory
#0 0.969 error: command 'gcc' failed with exit status 1
#0 0.969 ----------------------------------------
#0 0.970 ERROR: Command errored out with exit status 1: /usr/bin/python2 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-fFQ61w/sasl/setup.py'"'"'; __file__='"'"'/tmp/pip-install-fFQ61w/sasl/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /tmp/pip-record-bVU102/install-record.txt --single-version-externally-managed --compile --install-headers /usr/include/python2.7/sasl Check the logs for full command output.
------
ERROR: failed to solve: executor failed running [/bin/sh -c pip install sasl]: exit code: 1
해결방법
다음 모듈을 설치후 다시 시도해보자. 개인적으로는 java 에서 작업을 하다가 python 으로 하다보면 이런 의존성 때문에 JVM 에 더 정이 가게 되는거 같다. 끙
sudo yum install gcc gcc-c++ -y
반응형
'개발 > python' 카테고리의 다른 글
[PIP] fatal error: Python.h: No such file or director 오류 해결 방법 (centos) (0) | 2023.06.05 |
---|---|
[오류] pip install --upgrade pip 설치시 오류 해결방법 (0) | 2022.10.03 |
댓글