Remove Arch Linux specific package suggestions
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -17,10 +17,6 @@
|
|||||||
# HF_HUB_CACHE path to HuggingFace hub cache (default: ~/.cache/huggingface/hub)
|
# HF_HUB_CACHE path to HuggingFace hub cache (default: ~/.cache/huggingface/hub)
|
||||||
# CUDA_HOME path to CUDA toolkit (auto-detected if not set)
|
# 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
|
set -euo pipefail
|
||||||
|
|
||||||
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||||
@@ -40,7 +36,7 @@ if [ -z "${CUDA_HOME:-}" ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -z "${CUDA_HOME:-}" ]; then
|
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
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@@ -49,7 +45,7 @@ echo "==> CUDA: ${CUDA_HOME}"
|
|||||||
|
|
||||||
for tool in cmake git python3; do
|
for tool in cmake git python3; do
|
||||||
if ! command -v "${tool}" &>/dev/null; then
|
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
|
exit 1
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|||||||
@@ -13,9 +13,6 @@
|
|||||||
# Environment overrides:
|
# Environment overrides:
|
||||||
# PYTHON_ENV path to venv (default: ./venv)
|
# PYTHON_ENV path to venv (default: ./venv)
|
||||||
#
|
#
|
||||||
# Arch Linux packages needed before running this script:
|
|
||||||
# sudo pacman -S python cuda
|
|
||||||
#
|
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||||
|
|||||||
Reference in New Issue
Block a user