반응형
./configure --enable-loadable-sqlite-extensions
configure와 make까지 진행했을 때 설치를 더 진행해도 되지만 아래 메세지를 확인하고 설치가 안되는 모듈이 있음을 확인해야함.
Python build finished successfully!
The necessary bits to build these optional modules were not found:
_tkinter
To find the necessary bits, look in setup.py in detect_modules() for the module's name.
환경 변수를 설정했음에도 _sqlite3 가 지속적으로 보여서 확인해보니 setup.py 파일에서 직접 수정을 해야 했음.
sqlite_incdir = sqlite_libdir = None
sqlite_inc_paths = [ '/usr/include']
반응형
'Computer Science > python' 카테고리의 다른 글
seaborn clustermap color label (0) | 2022.05.24 |
---|---|
flask_sqlalchemy (0) | 2022.05.23 |
Progress bar 모듈 tqdm (0) | 2022.03.07 |
pandas 활용하기 (0) | 2022.02.18 |
logging 모듈 사용하기 (0) | 2022.02.17 |