Spaces:
Sleeping
Sleeping
File size: 418 Bytes
2cd98be |
1 2 3 4 5 6 7 8 9 |
#!/bin/bash
conda create -n novel_rag python=3.10 -y
conda activate novel_rag
pip install -r requirements.txt
# pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu128
# CUDA 12.1
# conda install pytorch==2.2.1 torchvision==0.17.1 torchaudio==2.2.1 pytorch-cuda=12.1 -c pytorch -c nvidia
pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu128 |