command로 Ipython noteobk Clear Output 하기
2020. 7. 15. 20:30ㆍ꿀팁 분석 환경 설정/Jupyter Notebook & Lab
jupyter notebook에 너무 뭔가를 많이 프린트 해놓으면, html에서 다 읽느라고 너무 느려진다.
이런 경우에 노트북 clear output 하는 방법을 공유한다.
# 새로 만들기
jupyter nbconvert --ClearOutputPreprocessor.enabled=True \
--to notebook --output=Clean_jupyter Dirty_jupyter.ipynb
# 덮어쓰기
jupyter nbconvert --ClearOutputPreprocessor.enabled=True --inplace Dirty_Jupyter.ipynb
728x90
'꿀팁 분석 환경 설정 > Jupyter Notebook & Lab' 카테고리의 다른 글
[TIP] Jupyer notebook에서 argparse 꺼내 쓰기 (0) | 2020.11.07 |
---|---|
[TIP / Installation] 사용하는 Jupyter Kernel에서 패키지 설치하는 방법 (0) | 2020.10.23 |
jupyter notebook 개별 메모리 사용량 확인하는 방법 (0) | 2020.04.28 |
[Python] Jupyter 사용자 유용 팁 정리 (1) | 2020.03.25 |
Jupyer Notebook / Lab 유용한 magic 함수들과 ShortCuts(단축키) (0) | 2020.01.19 |