如何在JupyterHub中设置NotebookApp.iopub_data_rate_limit和其他NotebookApp设置?

问题描述 投票:10回答:3

我想用jupyter notebook --NotebookApp.iopub_data_rate_limit=10000000000参数开始我的笔记本。可以在JupyterHub中设置它吗?

python configuration jupyter-notebook jupyter jupyterhub
3个回答
7
投票

打开命令行并输入

jupyter notebook --NotebookApp.iopub_data_rate_limit=1e10

这应该以增加的数据速率开始jupyter。


4
投票

你必须使用这个命令$ jupyter notebook --generate-config创建配置文件,这个link的答案


1
投票

04:Windows中的“IOPUB数据速率超出”问题“jupyter low memory ..”:

  1. 打开cmd:
  2. 在主路径中:C:\ Users \ siege>(这是我的根路径) 输入命令:“jupyter notebook --generate-config” 你有:C:\ Users \ siege> jupyter notebook --generate-config
  3. 系统将在路径中生成“jupyter_notebook_config.py”:C:\ Users \ siege> .jupyter
  4. 打开“jupyter_notebook_config.py”找到该行 #c.NotebookApp.iopub_data_rate_limit = 1000000 取消注释并将其更改为: c.NotebookApp.iopub_data_rate_limit = 100000000
  5. 保存
  6. 重启jupyter

https://www.youtube.com/watch?v=B_YlLf6fa5A

© www.soinside.com 2019 - 2024. All rights reserved.