본문 바로가기
Python

주피터 노트북에서 sqlite3 오류 해결 방법

by 자유로운시간 2023. 10. 26.
반응형

리눅스에서 jupyter-notebook 명령어를 사용해서 정상적으로

주피터 노트북을 사용하다가,

갑자기 어느 순간 sqlite3에러를 출력하면서

주피터 노트북이 실행이 안될 때가 있다.

원인

1. 기존의 jupyter-notebook를 사용하던 콘다 또는 리눅스 환경설정이 바뀜

2. 새로운 파이썬 라이브러리를 다운받으면서, jupyter-notebook의 디펜던시 라이브러리의 버전이 변경됨

 

 

pip를 사용하여 sqlite3를 재설치해보아도 아마 안될 것이다.

pip uninstall sqlite3

pip install sqlite3

 

아래와 같이 conda 에서 강제로 sqlite3를 재설치하는 방법을 추천한다.

 

 


해결방법

conda install sqlite --force-reinstall

 

 

 

 

Reference

1. https://askubuntu.com/questions/1397568/sqlite3-error-in-ubuntu20-04

 

sqlite3_error in Ubuntu20.04

I met a strange problem when using Ubuntu 20.04 LTS. When I type any non-meaning word in the command line, such as a letter A, it returns something related to python3.8 with "ImportError: /usr...

askubuntu.com

 

반응형