Computer Science/python
python 설치
바닐라스카이
2022. 4. 6. 16:13
반응형
./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']
반응형