Error
ImportError: cannot import name 'OrderedDict' from 'typing'
성장중 •͈ᴗ•͈
2024. 11. 12. 15:23
728x90
반응형
발생한 오류
Python 버전 호환성 문제로 Python 3.7.0 버전에서는 typing 모듈에 OrderedDict가 포함되어 있지 않아 나타난다.
ImportError: cannot import name 'OrderedDict' from 'typing'
해결 방법
python을 3.7.2 이상 버전을 사용하면 된다.
conda 가상환경일 경우 다음 명령어를 실행하여 파이썬 버전을 설정해주면 된다.
conda install python==3.7.2
Reference
https://stackoverflow.com/questions/75529492/importerror-cannot-import-name-ordereddict-from-typing
728x90
반응형
LIST