Python google colab中超过IOPub数据速率

Python google colab中超过IOPub数据速率,python,pandas,jupyter-notebook,google-colaboratory,Python,Pandas,Jupyter Notebook,Google Colaboratory,我试图在google colab中打开一个32MB.csv文件,但出现以下错误: df = pd.read_csv('2004-1_CA.csv',encoding='latin', error_bad_lines=False) 返回: IOPub data rate exceeded. The notebook server will temporarily stop sending output to the client in order to avoid crashing it. To

我试图在google colab中打开一个32MB.csv文件,但出现以下错误:

df = pd.read_csv('2004-1_CA.csv',encoding='latin', error_bad_lines=False)
返回:

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)
我已经搜索过同样的问题,但我找到的都是下载文件,而不是阅读文件。该文件已上载到colab,因此我迄今为止找到的解决方案对我不起作用。谢谢你的帮助