C++ implementation of the Jupyter Kernel protocol
Introduction
xeus is a library meant to facilitate the implementation of kernels for Jupyter. It takes the
burden of implementing the Jupyter Kernel protocol so developers can focus on implementing the
interpreter part of the kernel.
Several Jupyter kernels are built upon xeus, such as xeus-cling,
a kernel for the C++ programming language, and xeus-python, an alternative Python kernel for Jupyter.
Installation
xeus has been packaged on all platforms for the conda package manager.
conda install xeus -c conda-forge
Documentation
To get started with using xeus, check out the full documentation
Usage
xeus enables custom kernel authors to implement Jupyter kernels more easily. It takes the burden of implementing the Jupyter Kernel protocol so developers can focus on implementing the interpreter part of the Kernel.
The easiest way to get started with a new kernel is to inherit from the base interpreter class xeus::xinterpreter and implement the private virtual methods:
execute_request_implcomplete_request_implinspect_request_implis_complete_request_impl
as seen in the documentation.
#include "xeus/xinterpreter.hpp"
#include "nlohmann/json.hpp"
using xeus::xinterpreter;
namespace nl = nlohmann;
namespace custom
{
class custom_interpreter : public xinterpreter
{
public:
custom_interpreter() = default;
virtual ~custom_interpreter() = default;
private:
void configure() override;
nl::json execute_request_impl(int execution_counter,
const std::string& code,
bool silent,
bool store_history,
const nl::json::node_type* user_expressions,
bool allow_stdin) override;
nl::json complete_request_impl(const std::string& code,
int cursor_pos) override;
nl::json inspect_request_impl(const std::string& code,
int cursor_pos,
int detail_level) override;
nl::json is_complete_request_impl(const std::string& code) override;
nl::json kernel_info_request_impl() override;
};
}Kernel authors can then rebind to the native APIs of the interpreter that is being interfaced, providing richer information than with the classical approach of a wrapper kernel capturing textual output.
Building from Source
xeus depends on the following libraries: libzmq,
cppzmq, OpenSSL,
nlohmann_json, and xtl.
| xeus | libzmq | cppzmq | xtl | nlohmann json | OpenSSL |
|---|---|---|---|---|---|
| master | ^4.2.5 | ^4.3.0 | >=0.5.0,<0.7.0 | ^3.2.0 | ^1.0.1 |
| 0.23.1 | ^4.2.5 | ^4.3.0 | >=0.5.0,<0.7.0 | ^3.2.0 | ^1.0.1 |
| 0.23.0 | ^4.2.5 | ^4.3.0 | >=0.5.0,<0.7.0 | ^3.2.0 | ^1.0.1 |
| 0.22.0 | ^4.2.5 | ^4.3.0 | >=0.5.0,<0.7.0 | ^3.2.0 | ^1.0.1 |
| 0.21.1 | ^4.2.5 | ^4.3.0 | >=0.5.0,<0.7.0 | ^3.2.0 | ^1.0.1 |
| 0.21.0 | ^4.2.5 | ^4.3.0 | >=0.5.0,<0.7.0 | ^3.2.0 | ^1.0.1 |
| 0.20.0 | ^4.2.5 | ^4.3.0 | >=0.5.0,<0.7.0 | ^3.2.0 | ^1.0.1 |
| 0.19.2 | ^4.2.5 | ^4.3.0 | >=0.5.0,<0.7.0 | ^3.2.0 | ^1.0.1 |
| 0.19.1 | ^4.2.5 | ^4.3.0 | >=0.5.0,<0.7.0 | ^3.2.0 | ^1.0.1 |
| 0.19.0 | ^4.2.5 | ^4.3.0 | >=0.5.0,<0.7.0 | ^3.2.0 | ^1.0.1 |
On Linux platforms, xeus also requires libuuid, which is available in all linux distributions (uuid-dev on Debian).
We have packaged all these dependencies for the conda package manager. The simplest way to install them with conda is to run:
conda install cmake pkg-config zeromq cppzmq xtl OpenSSL -c conda-forge
conda install nlohmann_json -c conda-forge/label/gcc7On Linux platforms, you will also need:
conda install util-linux -c conda-forgeOnce you have installed the dependencies, you can build and install xeus:
cmake -D CMAKE_BUILD_TYPE=Release
make
make installInstalling the Dependencies from Source
The dependencies can also be installed from source. Simply clone the directories and run the following cmake (cmake >= 3.8) and make instructions.
libzmq
cmake -D WITH_PERF_TOOL=OFF -D ZMQ_BUILD_TESTS=OFF -D ENABLE_CPACK=OFF
-D CMAKE_BUILD_TYPE=Release
make
make installcppzmq
cppzmq is a header only library:
cmake -D CMAKE_BUILD_TYPE=Release
make installjson for modern cpp
nlohmann_json is a header only library
cmake
make installxtl
xtl is a header only library:
cmake -D CMAKE_BUILD_TYPE
make installLicense
We use a shared copyright model that enables all contributors to maintain the copyright on their contributions.
This software is licensed under the BSD-3-Clause license. See the LICENSE file for details.