From c345b0fd47aa334d991578bef2c4e7ae4529af63 Mon Sep 17 00:00:00 2001 From: Nicholas Smith Date: Mon, 18 Nov 2019 16:39:41 -0600 Subject: [PATCH] Update installation.rst --- docs/source/installation.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/source/installation.rst b/docs/source/installation.rst index 4842ce915..540eccf7f 100644 --- a/docs/source/installation.rst +++ b/docs/source/installation.rst @@ -110,6 +110,12 @@ An example batch job wrapper script is: echo "Running command:" $@ time $@ || exit $? + +Unless you install jupyter into this environment (which may bloat the tarball--LCG96 jupyter is reasonably recent), it is not visible inside the LCG jupyter server. From a shell with the virtual environment activated, you can execute:: + + python -m ipykernel install --user --name=coffeaenv + +to make a new kernel available that uses this environment. For Developers --------------