728x90
반응형
코드를 돌리다가 마주친 ImportError!
처음에는 import하려는 코드에 오류가 있어서 안되는건가 했는데 뒤에 설명을 보니 circular import 때문에 나타나는 경우가 많다고 써있었다!
알고보니
A.py 에서는 import B, B.py에서는 import A로 순환식으로 import를 하고 있어서 발생한 문제였다!
728x90
반응형
'Programming > Python' 카테고리의 다른 글
[Python] IndexError: tensors used as indices must be long, byte or bool tensors 문제 해결 (0) | 2022.03.06 |
---|---|
[Python] 난수 생성 시 가중치 (weights) 적용하기 (0) | 2022.02.27 |
[Python] TypeError: cannot perform reduce with flexible type (에러 해결 - list_eval, dtype) (0) | 2022.02.10 |
[Python] Function Annotation (':', '->' 이란?) (0) | 2022.02.05 |
[tqdm] tqdm 진행바에 설명 추가하기 (set_description, set_postfix) (0) | 2022.01.26 |