Files
axolotl/scripts/unsloth_install.py
2025-09-26 12:55:55 -04:00

7 lines
246 B
Python

"""Print the uv commands required to install Unsloth."""
UNSLOTH_BASE = "uv pip install --system unsloth-zoo==2025.9.12"
UNSLOTH_HF = 'uv pip install --system --no-deps "unsloth[huggingface]==2025.9.9"'
print(f"{UNSLOTH_BASE} && {UNSLOTH_HF}")