반응형

Python 오류내용

serial, pyserial을 설치했음에도 Serial 라이브러리 import시 아래 오류 발생

AttributeError: 'module'object has no attribute 'Serial'

 

 

해결 방법

cmd(명령프롬프트)창을 관리자모드로 실행 후 아래 명령어 실행

pip install serial
pip install pyserial

 

만약 serial, pyserial이 이미 설치된 상태라면 아래 명령어 실행 후 다시 실행

pip uninstall serial
pip uninstall pyserial

 

 

참고

https://stackoverflow.com/questions/11403932/python-attributeerror-module-object-has-no-attribute-serial