Language/Python
Please use tqdm.notebook.tqdm instead of tqdm.tqdm_notebook
밴나루
2022. 2. 24. 14:50
반응형
TqdmDeprecationWarning: This function will be removed in tqdm==5.0.0
Please use tqdm.notebook.tqdm` instead of `tqdm.tqdm_notebook
오류의 경우는 tqdm의 version이 업그레이드 됨에 따라 다른 명령어로 사용해 달라는 것이다.
from tqdm import tqdm_notebook
이 코드를
from tqdm.notebook import tqdm
로 변경하면 된다.
그리고 for문에 tqdm_notebook(range(변수))를 tqdm(range(변수))로 하면 Warning 메시지가 안뜬다.
728x90