I'm using basic integration of .ipynb files with Windows Explorer:
https://github.com/ContinuumIO/anaconda-issues/issues/267
However each notebook spawns a new notebook server.
Is there any way to force spawning new notebooks in the same notebook server & port using config files from jupyter?
Here are the settings that I have for notebook integration with file manager:
in CMD:
assoc .ipynb=IPYNBFILEftype IPYNBFILE="C:\Python\Python35\Scripts\ipython.exe" notebook "%%1"
In Registry (RegEdit)
[HKEY_CLASSES_ROOT\Directory\Background\shell\ipynb]@="Open IPython Notebook server here" [HKEY_CLASSES_ROOT\Directory\Background\shell\ipynb\command]@="\"C:\\Python\\Python35\\Scripts\\ipython.exe\" \"notebook\" \"%1\""[HKEY_CLASSES_ROOT\Directory\shell\ipynb]
@="Open IPython Notebook server here"
[HKEY_CLASSES_ROOT\Directory\shell\ipynb\command]
@="\"C:\\Python\\Python35\\Scripts\\ipython.exe\" \"notebook\" \"%1\""
--
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+unsubscribe@googlegroups.com.
To post to this group, send email to jup...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jupyter/9a701c28-8c6a-43e7-8f2f-9ce06775bf46%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
You should be able to write a script, say, "notebookwrapper.cmd", in
which you check if there already is an ipython.exe process running, and
if so, use the appropriate command line. Maybe you have to work with a
lockfile or the like.
pip install flit
flit installfrom github:takluyver/nbopen