Weekly builds of https://github.com/jupyter-xeus/xeus-cling.
Binaries packages (.tar.gz
, built against the GNU libc
) are built weekly and uploaded to GitHub releases.
You can install them like so:
# Fetch the xeus-cling binary package for your architecture (x86_64 and aarch64 are supported)
curl -L -o /tmp/xeus-cling.tar.gz https://github.com/pojntfx/xeus-cling-binaries/releases/download/latest/xeus-cling.$(uname -m).tar.gz
# Extract the package to /usr/local/xeus-cling. You must install in this prefix.
XEUS_PREFIX=/usr/local/xeus-cling
mkdir -p ${XEUS_PREFIX}
tar -C ${XEUS_PREFIX} -xzf /tmp/xeus-cling.tar.gz
# Install the kernels
jupyter kernelspec install ${XEUS_PREFIX}/share/jupyter/kernels/xcpp11 --sys-prefix
jupyter kernelspec install ${XEUS_PREFIX}/share/jupyter/kernels/xcpp14 --sys-prefix
jupyter kernelspec install ${XEUS_PREFIX}/share/jupyter/kernels/xcpp17 --sys-prefix
xeus-cling Binaries (c) 2021 Felix Pojtinger and contributors
SPDX-License-Identifier: BSD-3-Clause