超出 IOPub 数据速率的 Jupyter Notebook 错误消息

Jupyter Notebook error message that IOPub data rate exceeded

当我尝试使用以下代码导入 .txt 文件时收到以下错误消息,

with open("cobuy.txt", "r+") as my_file:
    for item in my_file:
        my_file.write("%s\n" % item)

text = open("obuy.txt").read()

text

:

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`.

通过谷歌搜索,Jupyter Notebook 5.0 版似乎有问题。它表明你可以在终端中输入以下代码来解决这个问题:jupyter notebook --NotebookApp.iopub_data_rate_limit=10000000000,我似乎无法让它工作:https://github.com/jupyter/notebook/issues/2287

还有其他解决方案吗?

为我工作。

启动笔记本如下:

jupyter notebook --NotebookApp.iopub_data_rate_limit=1.0e10