Skip to content

wilberquito/xeus-cpp-kernel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Harnessing the Power of C++ in Jupyter Notebooks with Xeus Cling

Preview

In this README you will find the instructions to build the images and create a running container.

You also have a notebook example to interact with the notebook running inside the container and the differents C++ kernels.

If you want to know more how it works you can read this interesting post.

Build image

docker build -t <image-name> .

Run image

hide logs (detached container's shell)

docker run -dp 127.0.0.1:8888:8888 -v $(pwd)/notebooks:/cpp/notebooks --name <container-name> <image-name>

print logs (attached container's shell)

docker run -p 127.0.0.1:8888:8888 -v $(pwd)/notebooks:/cpp/notebooks --name <container-name> <image-name>