First attempts on using distrobox

This commit is contained in:
Nina Chlóe Kassandra Reiß
2026-04-08 21:55:18 +02:00
parent e474979699
commit 36585f4206
10 changed files with 139 additions and 62 deletions

View File

@@ -0,0 +1,11 @@
#!/usr/bin/env bash
set -e
if command -v apt >/dev/null; then
sudo apt update
sudo apt install -y python3
elif command -v pacman >/dev/null; then
sudo pacman -Sy --noconfirm base-devel python3
elif command -v apk >/dev/null; then
sudo apk add build-base python3
fi