【发布时间】:2017-09-15 08:58:52
【问题描述】:
我想以jupyter notebook --NotebookApp.iopub_data_rate_limit=10000000000 参数开始我的笔记本。可以在 JupyterHub 中的哪个位置设置它?
【问题讨论】:
标签: python configuration jupyter-notebook jupyter jupyterhub
我想以jupyter notebook --NotebookApp.iopub_data_rate_limit=10000000000 参数开始我的笔记本。可以在 JupyterHub 中的哪个位置设置它?
【问题讨论】:
标签: python configuration jupyter-notebook jupyter jupyterhub
打开命令行输入
jupyter notebook --NotebookApp.iopub_data_rate_limit=1e10
这应该以增加的数据速率启动 jupyter。
【讨论】:
您必须使用此命令创建配置文件$ jupyter notebook --generate-config,答案在此link
【讨论】:
04:“jupyter low memory..”的“IOPUB data rate exceeded”问题 在窗口中:
- 打开cmd:
在主路径:C:\Users\siege>(这是我的根路径)
输入命令:“jupyter notebook --generate-config”
你拥有的:C:\Users\siege>jupyter notebook --generate-config
系统会生成“jupyter_notebook_config.py” 路径:C:\Users\siege>.jupyter
打开“jupyter_notebook_config.py”找到行
#c.NotebookApp.iopub_data_rate_limit = 1000000
取消注释并将其更改为:
c.NotebookApp.iopub_data_rate_limit = 100000000
保存
重启jupyter
【讨论】:
jupyterhub(而不仅仅是 jupyter notebook/lab)一起使用
要使用 jupyter-lab 启用它,请使用以下 cmd 用于使用的环境
conda activate 'your env'
jupyter-lab --NotebookApp.iopub_data_rate_limit=1e10
【讨论】: