问题:在jupyter中运行Python读取文件的代码,报如下错误。

[python]jupyter notebook IOPub_data_rate_limit报错

原因:IO速率问题

解决:

1.终端下运行

jupyter notebook --generate-config

2.修改jupyter_notebook_config.py

将#c.NotebookApp.iopub_data_rate_limit = 1000000

改为

c.NotebookApp.iopub_data_rate_limit = 1000000000

保存修改,重启jupyter

 

 

 

相关文章: