백엔드/Python2 IntelliJ, Python 오류 - Unresolved reference 'dateutil' 오류 발생Unresolved reference 'dateutil' 이유Unresolved reference 'dateutil' 에러는 Python 코드에서 dateutil 모듈을 사용하고 있는데, 해당 모듈이 설치되어 있지 않거나 import 문이 잘못된 경우 발생 해결 방법1. dateutil 설치 여부 확인pip install python-dateutil 2. 올바른 import 문 사용from dateutil import parser# 예: parser.parse("2025-06-23")또는from dateutil.relativedelta import relativedelta 3. 가상환경 확인which pythonpip list | grep dateutil 에러 발생MacBookPro.. 2025. 6. 23. IntelliJ 무료버전, no python interpreter configured for the module 에러 문구No Python interpreter configured for the module 이유파이썬 인터프리터 설정이 없어서 뜨는 것. 해결 방법File > Project Structure... Add → Python 선택 Apply → OK 오류 사라짐 2025. 6. 23. 이전 1 다음