Programming/Python
Python : 설치 시 에러 (error: the control flow of function ‘binascii_crc32’)
RInovation
2020. 3. 8. 09:24
python 소스 설치 시 error: the control flow of function ‘binascii_crc32’ 가 발생하면 아래 패키지를 설치해 본다.
[app@rinoapp1 ~]$ sudo yum install bzip2-devel libzip libzip-devel libzip-tools
만약 설치를 수행한 뒤에서 make 시에 위의 에러가 발생하면
설치 디렉토리에서
[app@rinoapp1 Python-3.8.2]$ find . -name \*.gcda -exec rm '{}' \;
수행 후
make clean ; make
재수행 시 에러가 발생하지 않는다.
참고 : https://bugs.python.org/issue34820
반응형