【发布时间】:2017-07-21 20:31:15
【问题描述】:
当我尝试使用以下代码导入 .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
还有其他解决办法吗?
【问题讨论】:
标签: python python-3.x jupyter-notebook ipython-notebook jupyter