Views
No views yet
unsloth-bench environment on DGX Spark Alice and is intended for:aarch64cp312flash_attn==2.8.3.post1https://huggingface.co/N8Programs/dgx-flash-attn-wheel/resolve/main/flash_attn-2.8.3.post1-cp312-cp312-linux_aarch64.whl1conda create -n piiEnv python=3.12 pip -y
2conda activate piiEnv
3python -m pip install --upgrade pippython -m pip from inside the conda environment. If pip install reports an externally-managed-environment error, the environment is probably missing its own Python/pip and is falling back to system Python.1python -m pip install \
2 --extra-index-url https://download.pytorch.org/whl/cu130 \
3 torch==2.12.0+cu130 \
4 triton==3.7.0 \
5 packaging==26.2 \
6 ninja==1.13.0 \
7 psutil==7.2.21python -m pip install \
2 https://huggingface.co/N8Programs/dgx-flash-attn-wheel/resolve/main/flash_attn-2.8.3.post1-cp312-cp312-linux_aarch64.whl1python -m pip install \
2 transformers==5.5.0 \
3 accelerate==1.13.0 \
4 peft==0.19.1 \
5 trl==0.24.0 \
6 datasets==5.0.0 \
7 bitsandbytes==0.49.2 \
8 cut-cross-entropy==25.1.1 \
9 sentencepiece==0.2.1 \
10 tokenizers==0.22.2 \
11 safetensors==0.8.0 \
12 protobuf==7.35.0 \
13 numpy==2.4.6 \
14 pandas==3.0.3 \
15 Pillow==12.2.0 \
16 PyYAML==6.0.3 \
17 hf_transfer==0.1.9 \
18 msgspec==0.21.1 \
19 tqdm==4.68.2 \
20 tyro==1.0.13 \
21 wandb==0.27.2torch==2.12.0+cu130, but the current Unsloth package metadata may declare an older Torch upper bound. Preserve the working CUDA stack by installing Unsloth without dependencies:python -m pip install --no-deps unsloth_zoo==2026.6.2 unsloth==2026.6.21python - <<PY
2import torch
3import transformers
4import flash_attn
5import unsloth
6import unsloth_zoo
7
8print("torch", torch.__version__, "cuda", torch.version.cuda, "available", torch.cuda.is_available())
9print("transformers", transformers.__version__)
10print("flash_attn", flash_attn.__version__)
11print("unsloth", unsloth.__version__)
12print("unsloth_zoo", unsloth_zoo.__version__)
13PY1torch 2.12.0+cu130 cuda 13.0 available True
2transformers 5.5.0
3flash_attn 2.8.3.post1
4unsloth 2026.6.2
5unsloth_zoo 2026.6.21cat > install_dgx_spark_env.sh <<SH
2#!/usr/bin/env bash
3set -euo pipefail
4
5python -m pip install --upgrade pip
6python -m pip install \
7 --extra-index-url https://download.pytorch.org/whl/cu130 \
8 torch==2.12.0+cu130 triton==3.7.0 packaging==26.2 ninja==1.13.0 psutil==7.2.2
9python -m pip install \
10 https://huggingface.co/N8Programs/dgx-flash-attn-wheel/resolve/main/flash_attn-2.8.3.post1-cp312-cp312-linux_aarch64.whl
11python -m pip install \
12 transformers==5.5.0 accelerate==1.13.0 peft==0.19.1 trl==0.24.0 datasets==5.0.0 \
13 bitsandbytes==0.49.2 cut-cross-entropy==25.1.1 sentencepiece==0.2.1 tokenizers==0.22.2 \
14 safetensors==0.8.0 protobuf==7.35.0 numpy==2.4.6 pandas==3.0.3 Pillow==12.2.0 \
15 PyYAML==6.0.3 hf_transfer==0.1.9 msgspec==0.21.1 tqdm==4.68.2 tyro==1.0.13 wandb==0.27.2
16python -m pip install --no-deps unsloth_zoo==2026.6.2 unsloth==2026.6.2
17SH
18bash install_dgx_spark_env.sh