[python]AttributeError: partially initialized module 'qrcode' has no attribute 'QRCode' (most likely due to a circular import)

2023년 05월 18일 by 진아사랑해

    [python]AttributeError: partially initialized module 'qrcode' has no attribute 'QRCode' (most likely due to a circular import) 목차
반응형

개요

파이썬을 사용하다가 위와 같은 에러가 발생하였습니다.

"most likely due to a circular import" 에러의 원인에 대해 알아보겠습니다.

에러 원인

생성한 파일 이름이 qrcode.py

import 하는 모듈 이름도 qrcode

이름이 중복됨으로 이런 에러가 발생하는 것입니다.

에러 해결

해결은 간단합니다.

파일 이름을 변경하시면 됩니다.

 

반응형