This patch let you customize your kernel: ``` { "display_name": "C++14-custom", "argv": [ "jupyter-cling-kernel", "-f", "{connection_file}", "--std=c++14" ], "language": "C++", "env": {"CLING_OPTS": "-I<add_directory_to_include_search_path> -L<add_directory_to_library_search_path>"} } ```
Cling Kernel
C++ Kernel for Jupyter with Cling.
Requires ipykernel ≥ 4.0
Install
To install the kernel with sources in src/tools/cling:
export PATH=/cling-install-prefix/bin:$PATH
cd /cling-install-prefix/share/cling/Jupyter/kernel
pip install -e .
# or: pip3 install -e .
# register the kernelspec for C++17/C++1z/C++14/C++11:
# the user can install whichever kernel(s) they
# wish:
jupyter-kernelspec install [--user] cling-cpp17
jupyter-kernelspec install [--user] cling-cpp1z
jupyter-kernelspec install [--user] cling-cpp14
jupyter-kernelspec install [--user] cling-cpp11
To run it:
jupyter-notebook
# or: jupyter notebook