-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
For C++: http://shuvomoy.github.io/blog/programming/2016/08/04/Cpp-kernel-for-Jupyter.html
Tried the following:
wget https://root.cern.ch/download/cling/cling_2017-08-05_ubuntu16.tar.bz2
tar -xvf cling_2017-08-05_ubuntu16.tar.bz2
grep -q -F 'export PATH=~/cling_ubuntu/bin:$PATH' ~/.bashrc || echo "export PATH=~/cling_ubuntu/bin:$PATH" >> ~/.bashrc
grep -q -F 'source ~/cling_ubuntu/share/cling/Jupyter/kernel' ~/.bashrc || echo "source ~/cling_ubuntu/share/cling/Jupyter/kernel" >> ~/.bashrc
cd /cling-install-prefix/share/cling/Jupyter/kernel
pip install -e .
jupyter-kernelspec install cling-cpp11
rm cling_2017-08-05_ubuntu16.tar.bz2
rm -rf cling_2017-08-05_ubuntu16Need to go about it again.