You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Project Jupyter
I have been trying to help some colleagues install an extension that includes both a server and nb component and have had some trouble when they have more than one version of python, or of the notebook, on their machine.
Is there a way to tell from a notebook which version of python is running the notebook server (not the kernel)? Is there a default? Similarly is there a way to tell from the notebook, which version of the notebook is running? I am imagining something like `which notebook` or `which python` but the default one returned by these in Terminal is not always the same as ends up running the notebook (or so it seems).
Matthias Bussonnier
unread,
Jul 6, 2017, 4:31:35 AM7/6/17
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to jup...@googlegroups.com
Hello Adam,
IN a running notebook, you can do `help > about` it should display
information about both the running server and current kernel.
The default should be current python executable (IIRC), if you want to
be sure you can do :
python -m notebook
And then you can be sure it starts with the python you referenced.
which jupyter-notebook
can also tell you which script get started.