Open penilessquant opened 4 years ago
Ah at least I have figured out the config, or rather the lack of it. When you run jupyter qtconsole
the timer is hardcoded in client.py:
I changed this to 20 seconds, but it's still timing out. is there any logging or dependencies I can check for this channel? This issie is that both Jupyter and Spyder console depends on this
class QtHBChannel(SuperQObject, HBChannel):
# A longer timeout than the base class
time_to_dead = 3.0
# Emitted when the kernel has died.
kernel_died = QtCore.Signal(object)
Hi there i installed latest jupyter from conda-forge, and when I run
jupyter qtconsole --KernelManager.autorestart=False --KernelRestarter.restart_limit=1
the qtconsole does not seem to be respecting the options. I have also placed these settings in'C:\ProgramData\Anaconda3\envs\fx_env\etc\jupyter\jupyter_qtconsole_config.py'
but that seems to be ignored too. I can confirm that the config file is loaded at startup as I can see this at startup[JupyterQtConsoleApp] Loaded config file: C:\ProgramData\Anaconda3\envs\fx_env\etc\jupyter\jupyter_qtconsole_config.py
What am I doing wrong?
I am actually trying to debug a kernel crash every 3 seconds and I have a raised an issue here https://github.com/ipython/ipython/issues/12430 Do you know how I can set all the different options listed here https://qtconsole.readthedocs.io/en/stable/config_options.html ?