Programming/errors

TqdmWarning: IProgress not found. 에러 해결방법 (Anaconda, Jupyter Lab / Notebook)

방황하는 데이터불도저 2022. 10. 21. 13:15

Conda에 Jupyter 조합을 쓰는사람에게 자주 발생하는 에러라고 한다.

 

[해결 방법]

 

1) Jupyter lab / notebook 종료한 상태에서 Terminal or Anaconda Prompt 접속

 

2) (base)상태에서 아래의 커맨드로 jupyterlab_widgets 설치

 

3) (base)상태에서 아래의 두번째 커맨드로 ipywidgets 설치

   - your_environment 부분에 본인의 가상환경 이름을 넣기!

conda install -n base -c conda-forge jupyterlab_widgets
conda install -n your_environment -c conda-forge ipywidgets

4) 터미널 종료하고 다시 재실행하면 에러가 발생하지 않음