사용자 도구

사이트 도구


python:install_error

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판이전 판
다음 판
이전 판
python:install_error [2022/08/04 14:32] taekgupython:install_error [2025/04/15 10:05] (현재) – 바깥 편집 127.0.0.1
줄 1: 줄 1:
 +====== python설치오류 ====== 
 +  * WARNING: The Python ctypes extension was not compiled. Missing the libffi lib? 
 +<code sh> 
 +sudo apt install libffi-dev 
 +</code> 
 +  * WARNING: The Python tkinter extension was not compiled and GUI subsystem has been detected. Missing the Tk toolkit? 
 +<code sh> 
 +sudo apt install tk-dev 
 +</code> 
 +  * WARNING: The Python lzma extension was not compiled. Missing the lzma lib? 
 +<code sh> 
 +sudo apt install liblzma-dev 
 +</code>