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

2018-02-09 Thread Simon Biggs
Is it okay if I resubmit this with a more informative title and more
prominent link? I realised the way I presented it, it was very easy to pass
over on the digest email...

On Sat., 10 Feb. 2018, 6:20 am Simon Biggs,  wrote:

> Thank Brian :)
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Project Jupyter" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/jupyter/YrUqTU6NKuQ/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> jupyter+unsubscr...@googlegroups.com.
> To post to this group, send email to jupyter@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jupyter/176b-df7a-474e-ac4e-9386cb7acb70%40googlegroups.com
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Project Jupyter" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jupyter+unsubscr...@googlegroups.com.
To post to this group, send email to jupyter@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jupyter/CAALqB0DikcbxdUN60pjvj2pDjYZHHEGxDwzUdcqX-MXfYVmDqw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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

2018-02-09 Thread Edward Banner
I am attempting to associate a jupyter notebook with a running IPython 
kernel. This kernel is running outside of jupyter (accomplished by running 
the following code in a python process):

import IPython
IPython.embed_kernel()

which produces the following output

To connect another client to this kernel, use:
--existing kernel-9692.json

I can attach to this kernel through jupyter console and jupyter qtconsole, 
but not with jupyter notebook. As referenced in this issue this is not 
because of any inherent technical limitation, but rather because it would 
be confusing from a UI perspective.

I believe the first step would be registering the running kernel with the 
jupyer notebook server so that the kernel is returned on GET 
localhost:/api/kernels. The hope being then that I could point an 
existing jupyter notebook to use that kernel (I haven't figured out how to 
do that as it doesn't appear to be documented on this page).

How can I achieve this first step of registering this IPython kernel with a 
running jupyter notebook server?

Thanks in advance.


On Friday, February 9, 2018 at 3:05:18 PM UTC-8, Edward Banner wrote:
>
> Hi,
>
> I am attempting to associate a jupyter notebook with a running IPython 
> kernel. This kernel is running outside of jupyter (accomplished by running 
> the following code in a python process):
>
> import IPython
>
> IPython.embed_kernel()
>
> which produces the following output
>
> To connect another client to this kernel, use:
>
> --existing kernel-9692.json
>
> I can attach to this kernel through jupyter console and jupyter qtconsole, 
> but not with jupyter notebook. As referenced in this issue 
>  this is not because of 
> any inherent technical limitation, but rather because it would be confusing 
> from a UI perspective.
>
> I believe the first step would be registering the running kernel with the 
> jupyer notebook server so that the kernel is returned on GET 
> localhost:/api/kernels. The hope being then that I could point an 
> existing jupyter notebook to use that kernel (I haven't figured out how to 
> do that as it doesn't appear to be documented on this page 
> ).
>
> How can I achieve this first step of registering this IPython kernel with 
> a running jupyter notebook server?
>
> Thanks in advance.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Project Jupyter" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jupyter+unsubscr...@googlegroups.com.
To post to this group, send email to jupyter@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jupyter/13a75067-3663-43ca-b9f6-e0be18a72330%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[jupyter] Register external IPython kernel with jupyter notebook?

2018-02-09 Thread Edward Banner
Hi,

I am attempting to associate a jupyter notebook with a running IPython 
kernel. This kernel is running outside of jupyter (accomplished by running 
the following code in a python process):

import IPython

IPython.embed_kernel()

which produces the following output

To connect another client to this kernel, use:

--existing kernel-9692.json

I can attach to this kernel through jupyter console and jupyter qtconsole, 
but not with jupyter notebook. As referenced in this issue 
 this is not because of any 
inherent technical limitation, but rather because it would be confusing 
from a UI perspective.

I believe the first step would be registering the running kernel with the 
jupyer notebook server so that the kernel is returned on GET 
localhost:/api/kernels. The hope being then that I could point an 
existing jupyter notebook to use that kernel (I haven't figured out how to 
do that as it doesn't appear to be documented on this page 
).

How can I achieve this first step of registering this IPython kernel with a 
running jupyter notebook server?

Thanks in advance.

-- 
You received this message because you are subscribed to the Google Groups 
"Project Jupyter" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jupyter+unsubscr...@googlegroups.com.
To post to this group, send email to jupyter@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jupyter/d46ea080-e60d-476a-a69c-560f02ef71bc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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

2018-02-09 Thread Nate L.
I am using Jupyter on SSH, with the amazing VIM extension. However, when I 
try to modify the vim mappings in the config file, the actions are now 
shown in my jupyter notebook.  Does anyone know how I can see which config 
file is being used by my jupyter folder? My current config file is 
~/.jupyter/custom/custom.js, but it's not loading on the Jupyter notebook :(

-- 
You received this message because you are subscribed to the Google Groups 
"Project Jupyter" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jupyter+unsubscr...@googlegroups.com.
To post to this group, send email to jupyter@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jupyter/a141af95-ed48-4f9d-9350-3ab3ddb0d703%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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

2018-02-09 Thread Brian Granger
Very cool, thanks for sharing!

On Fri, Feb 9, 2018 at 12:24 AM, Simon Biggs  wrote:
> Hi,
>
> Standing upon the shoulders of giants I have created a tool that allows one
> to quickly and easily create powerful reactive form like front ends for
> python
> scripts and packages using markdown.
>
> Check out https://github.com/SimonBiggs/scriptedforms to take it for a spin.
> Should take less than 5 mins to be able to see the power of what it can do.
>
> Building this was only possible because the upcoming JupyterLab has been
> built in such a beautifully modular way.
>
> Thank you Team Jupyter! :)
>
> Cheers,
> Simon
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Project Jupyter" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jupyter+unsubscr...@googlegroups.com.
> To post to this group, send email to jupyter@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jupyter/34a804fb-e852-41b2-8b60-c35f92b2faf4%40googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.



-- 
Brian E. Granger
Associate Professor of Physics and Data Science
Cal Poly State University, San Luis Obispo
@ellisonbg on Twitter and GitHub
bgran...@calpoly.edu and elliso...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
"Project Jupyter" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jupyter+unsubscr...@googlegroups.com.
To post to this group, send email to jupyter@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jupyter/CAH4pYpTk-Ws27qsJtJQxwCAdK8t9iy3c6FCuf20h534KXOy7JA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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

2018-02-09 Thread Simon Biggs
Hi,

Standing upon the shoulders of giants I have created a tool that allows one 
to quickly and easily create powerful reactive form like front ends for 
python 
scripts and packages using markdown.

Check out https://github.com/SimonBiggs/scriptedforms to take it for a 
spin. Should take less than 5 mins to be able to see the power of what it 
can do.

Building this was only possible because the upcoming JupyterLab has been 
built in such a beautifully modular way.

Thank you Team Jupyter! :)

Cheers,
Simon


-- 
You received this message because you are subscribed to the Google Groups 
"Project Jupyter" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jupyter+unsubscr...@googlegroups.com.
To post to this group, send email to jupyter@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jupyter/34a804fb-e852-41b2-8b60-c35f92b2faf4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.