jupyter lab을 쓰는데 tqdm이 이상하게 자꾸 줄 바뀜이 일어난다.
그래서 찾아보니
stackoverflow.com/questions/23113494/double-progress-bar-in-python
여기에 enlighten 함수는 jupyterlab에 안 먹혔음
그래서 form tqdm.notebook import tqdm을 써서 하려함
그런데 아래와 같은 문제 발생
ImportError: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html
찾아보니 conda + jupyterlab 사용자의 경우 아래와 같이 ipywidgets을 설치해야 한다.
conda install -n base -c conda-forge jupyterlab_widgets
conda install -n py36 -c conda-forge ipywidgets
여기서 py36은 각자의 가상환경 이름으로 입력한다.
입력하면 jupyterlab_widgets이 설치 된다.
그래도 문제가 발생 추가적인 조치가 필요하다.
#usual installation
pip install ipywidgets
jupyter nbextension enable --py widgetsnbextension
#you are my saver!
jupyter labextension install @jupyter-widgets/jupyterlab-manager
이렇게하면? 그대로문제..
from tqdm import tqdm_notebook
from tqdm import tqdm_notebook
이래도 문제...
github.com/tqdm/tqdm/issues/394
ipywidgets.readthedocs.io/en/latest/user_install.html#installing-the-jupyterlab-extension
nodejs를 설치하고 labextension을 설치해준다.
그래도 안된다.
conda install -c conda-forge ipywidgets
pip install --upgrade jupyter_client
해결 방법
위에 설치후 jupyter lab 서버를 껏다가 킨다....!!
'hacking or software engineering skills > etc' 카테고리의 다른 글
python으로 폴더 지우기 (os, shutil) (0) | 2021.03.04 |
---|---|
conda error (0) | 2021.01.19 |
[flask] python 파일 업로드/다운로드 예제 (0) | 2021.01.13 |
[mac] 기본 게이트웨이 확인하는 명령어, U+ wifi 접속 방법 (0) | 2021.01.01 |
postgre sql 설치 및 버튼 (콘솔 나가기) (0) | 2020.12.02 |