From 346c7c65857583a000a17d7f0273f7e6c5bbd752 Mon Sep 17 00:00:00 2001 From: mikael-lovqvists-claude-agent Date: Sun, 7 Jun 2026 08:24:43 +0000 Subject: [PATCH] Remove Arch Linux specific package suggestions Co-Authored-By: Claude Sonnet 4.6 --- setup-venv-local-build.sh | 8 ++------ setup-venv.sh | 3 --- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/setup-venv-local-build.sh b/setup-venv-local-build.sh index 1c9f772..84552f2 100755 --- a/setup-venv-local-build.sh +++ b/setup-venv-local-build.sh @@ -17,10 +17,6 @@ # HF_HUB_CACHE path to HuggingFace hub cache (default: ~/.cache/huggingface/hub) # CUDA_HOME path to CUDA toolkit (auto-detected if not set) # -# Arch Linux packages needed before running this script: -# sudo pacman -S cuda cmake git python -# (cuda is in the extra repo; if not found: yay -S cuda or check community/AUR) -# set -euo pipefail SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" @@ -40,7 +36,7 @@ if [ -z "${CUDA_HOME:-}" ]; then fi if [ -z "${CUDA_HOME:-}" ]; then - echo "ERROR: CUDA not found. Set CUDA_HOME manually or install: sudo pacman -S cuda" >&2 + echo "ERROR: CUDA not found. Set CUDA_HOME manually." >&2 exit 1 fi @@ -49,7 +45,7 @@ echo "==> CUDA: ${CUDA_HOME}" for tool in cmake git python3; do if ! command -v "${tool}" &>/dev/null; then - echo "ERROR: ${tool} not found — install with: sudo pacman -S ${tool}" >&2 + echo "ERROR: ${tool} not found" >&2 exit 1 fi done diff --git a/setup-venv.sh b/setup-venv.sh index b041654..6e9affe 100755 --- a/setup-venv.sh +++ b/setup-venv.sh @@ -13,9 +13,6 @@ # Environment overrides: # PYTHON_ENV path to venv (default: ./venv) # -# Arch Linux packages needed before running this script: -# sudo pacman -S python cuda -# set -euo pipefail SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"