feat: add nbdime

This commit is contained in:
Daniel Bauer
2026-04-17 10:32:22 +02:00
parent 3179c0b2b9
commit 77d8f02e0d
3 changed files with 31 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
#!/usr/bin/env bash
set -e
# Install nbdime using pipx
if ! command -v pipx &> /dev/null; then
echo "pipx not found. failed to install nbdime"
exit 1
fi
if pipx list | grep -q nbdime; then
echo "nbdime already installed. skipping."
exit 0
fi
echo "Installing nbdime"
pipx install nbdime