본문 바로가기
Python

jupyter notebook IOPub data rate exceeded 문제 해결

by 퍼포먼스마케팅코더 2022. 10. 8.
반응형

다음과 같은 에러 문구가 떠서 주피터 노트북에서 해결되지 않는 상태가 나오긴 한다.

 

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)

 

이럴땐 아래와 같이 New > Terminal 에 들어가면 cmd 창이 뜬다. 

 

 

 

그리고 아래와 같이 명령어를 입력해 주면 된다. 그럼 정상적으로 실행된다.

 

jupyter notebook --NotebookApp.iopub_data_rate_limit=1.0e10

 

 

반응형

댓글