From 53641b96bf2f8d9b9cb5a5d6b70db6fdfd641bb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ismael=20Venegas=20Castell=C3=B3?= Date: Sat, 8 Feb 2020 11:49:30 -0600 Subject: [PATCH] Update instructions. This is needed in fresh install of Ubuntu and Arch Solution found here: https://github.com/root-project/cling/issues/10#issuecomment-373662968 --- www/jupyter.html | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/www/jupyter.html b/www/jupyter.html index 497e34decd..6b3886199c 100644 --- a/www/jupyter.html +++ b/www/jupyter.html @@ -29,8 +29,16 @@

Prerequisites

Install

To install the kernel with sources in src/tools/cling:

-    export PATH=/path/to/cling/bin:$PATH
+    CLING_PATH=/path/to/cling
+    export PATH=${CLING_PATH}/bin/:$PATH
+    export LIBRARY_PATH=${CLING_PATH}/lib/:$LIBRARY_PATH
+    export CPATH=${CLING_PATH}/include/:$CPATH
+    export LD_LIBRARY_PATH=${CLING_PATH}/lib/:$LD_LIBRARY_PATH
+    
+    # from source code:
     cd src/tools/cling/tools/Jupyter/kernel/
+    # from precompiled binaries: 
+    cd share/cling/Jupyter/
 
     pip install -e .
     # or: pip3 install -e .