System Management

ModuleNotFoundError: No module named '_sqlite3' 장애 조치

kogun82 2019. 10. 14. 15:48

Jupyter 설치 시 아래와 같은 장애가 발생하면 다음과 조치한다.

 

[장애 메세지]

ModuleNotFoundError: No module named '_sqlite3'

 

[해결 방안]

1. Install the sqlite-devel package:

yum install sqlite-devel -y



2. Recompile python from the source:

./configure
make
make altinstall