[jupyter] Re: Jupyter startup

2018-02-13 Thread David Doherty
Got any example error details? I've gone through this a couple times as I'm in a corporate firewall but I'm not exactly sure what the issue is. I would recommend following Lawrence's approach if you're not On Sunday, 14 January 2018 23:53:33 UTC-5, Vince Yu wrote: > > Hi everyone, > > I would

Re: [jupyter] An example of what can be built with the JupyterLab ecosystem

2018-02-13 Thread Fernando Perez
On Mon, Feb 12, 2018 at 11:49 PM, Simon Biggs wrote: > Hi Fernando, > > Thank you for the encouragement. Really chuffed that you want to include > what I have done as an example in the talk you are giving. Puts a huge > smile on my face. My supervisor was also quite

[jupyter] Re: Register external IPython kernel with jupyter notebook?

2018-02-13 Thread Edward Banner
*Arg! I can't seem to get formatting down on google forums. I apologize. Here is my response in full.* Hi Roland, Thanks for your response. Your suggestion makes sense. But does that mean going with a custom server extension

Re: [jupyter] How to know which config file is being used?

2018-02-13 Thread M Pacer
Nate, out of curiosity, does your configuration issue get caught if you use jupyter_conf_search to search through your config files for the relevant option? It exists specifically to help figure out questions like yours. If it doesn't help with your

[jupyter] Re: Register external IPython kernel with jupyter notebook?

2018-02-13 Thread Edward Banner
Looking through the code a bit more I found this code snippet in jupyter_client/manager.py : def _launch_kernel(self, kernel_cmd, **kw): """actually launch the kernel override in a subclass to

[jupyter] Re: Register external IPython kernel with jupyter notebook?

2018-02-13 Thread Roland Weber
Hi Edward, I'm not going to read up on everything you posted here :-) I know the PID of the running kernel process. If I could somehow do a > subprocess.Popen() on that existing process and return a reference to that, > I think that would work. > Try starting a subprocess that joins or polls