Hi, when using your script for installing unsloth
conda create --name unsloth_env
python=3.11
pytorch-cuda=12.1
pytorch cudatoolkit xformers -c pytorch -c nvidia -c xformers
-y
conda activate unsloth_env
pip install "unsloth[colab-new] @ git+https://github.com/unslothai/unsloth.git"
pip install --no-deps trl peft accelerate bitsandbytes
there is an error when loading unsloth:
NVIDIA GeForce RTX 5090 with CUDA capability sm_120 is not compatible with the current PyTorch installation. The current PyTorch install supports CUDA capabilities sm_50 sm_60 sm_61 sm_70 sm_75 sm_80 sm_86 sm_90.
After installing pytorch with the new cuda:
pip install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu128
then i had to compile bitsandbytes from source - and triton (which failed) and xformers - because their default versions do not work with blackwell (or at least cuda 12.8) yet
I now try installing unsloth into the nvcr.io/nvidia/pytorch:25.01-py3 docker image...
Hi, when using your script for installing unsloth
there is an error when loading unsloth:
After installing pytorch with the new cuda:
then i had to compile bitsandbytes from source - and triton (which failed) and xformers - because their default versions do not work with blackwell (or at least cuda 12.8) yet
I now try installing unsloth into the nvcr.io/nvidia/pytorch:25.01-py3 docker image...