-
Notifications
You must be signed in to change notification settings - Fork 89
Open
Description
The instructions after setting up the environment appear to be incomplete as running the command "pip install -e ." prior to "pip install -r requirements.txt" produces a torch related error. The following is another sure way of mitigating this issue.
Create and activate environment
conda create -n flashvsr python=3.11.13
conda activate flashvsr
Manually install correct PyTorch (GPU/CUDA)
pip install torch==2.6.0 torchvision torchaudio --index-url https://download.pytorch.org/whl/cu124
Install project dependencies
pip install -r requirements.txt
Finally, install project (editable mode)
pip install -e .
Metadata
Metadata
Assignees
Labels
No labels