본문 바로가기
IT/[파이썬]

jupyter notebook 주피터 IOPub data rate exceeded. 해결방법

by Coffee With Me 2020. 6. 12.

IOPub data rate exceeded. The notebook server will temporarily stop sending output to the client in order to avoid crashing it. To change this limit, set the config variable `--NotebookApp.iopub_data_rate_limit`. Current values: NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec) NotebookApp.rate_limit_window=3.0 (secs)

IOPub data rate exceeded

출력 데이터 초과시 발생하는 오류이다. 


해결방법

누르면 나타나는 cmd 창에

jupyter notebook --NotebookApp.iopub_data_rate_limit=1.0e10

복붙해서 엔터 치면 세로운 주피터노트북이 실행된다.

이후 같은 코드를 실행하면 실행된다.

 

jupyter notebook --NotebookApp.iopub_data_rate_limit=1.0e10