오류 메시지
AttributeError: 'tqdm_notebook' object has no attribute 'disp'
원인
.ipynb 에서 구현한 코드를 가져오다 보니 from tqdm.notebook import tqdm으로 되어있는 것을 확인했다. 이때 jupyter 라이브러리가 설치되어 있지 않으면 오류가 발생한다.
해결 방법
1. jupyter 설치
pip install jupyter
2. tqdm 변경
from tqdm import tqdm
'Programming > Error' 카테고리의 다른 글
Matplotlib 그래프 한글 깨짐 : findfont: Font family 'NanumGothic' not found. (0) | 2024.07.25 |
---|---|
Failed to initialize NVML: Driver/library version mismatch (0) | 2024.01.29 |