Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/wilberquito/xeus-cpp-kernel

Harnessing the Power of C++ in Jupyter Notebooks with Xeus Cling
https://github.com/wilberquito/xeus-cpp-kernel

cpp docker-image notebook

Last synced: 16 days ago
JSON representation

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

Awesome Lists containing this project

README

        

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

![Preview](./preview-xeus-notebook.png)

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](https://blog.jupyter.org/interactive-workflows-for-c-with-jupyter-fe9b54227d92).

### Build image

```
docker build -t .
```

### Run image

_**hide logs (detached container's shell)**_

```
docker run -dp 127.0.0.1:8888:8888 -v $(pwd)/notebooks:/cpp/notebooks --name
```

_**print logs (attached container's shell)**_

```
docker run -p 127.0.0.1:8888:8888 -v $(pwd)/notebooks:/cpp/notebooks --name
```