반응형
os에서 bz2 모듈이 인식되지 않아 에러가 발생했다.
해결법
rpm -qa | grep bzip2-devel
로 bzip2 관련 패키지가 설치되어 있는지 확인하고 없다면,
yum install bzip2-devel
로 설치한다.
이후 python 을 재컴파일 한다.
./configure
make
make install
반응형
'python' 카테고리의 다른 글
Google Sheets API 를 통해 스프레드시트 데이터 읽기/쓰기 (0) | 2022.12.29 |
---|---|
[python에러] TypeError: can only concatenate str (not "NoneType") to str ~ (0) | 2022.12.28 |
[python에러] SyntaxError: Non-UTF-8 code starting with ~ (0) | 2022.12.25 |
[centos 7] python 3.7 install (0) | 2022.05.31 |
[python] 4. 리스트/사전/튜플/세트/자료구조변경 (0) | 2021.03.30 |