From e16713998a88e7451564170924065a23821f01ee Mon Sep 17 00:00:00 2001 From: Harsh Dadiya Date: Sun, 28 Sep 2025 14:00:02 +0530 Subject: [PATCH] Add Windows-specific installation instructions and requirements file --- README.md | 5 +++++ requirements-win.txt | 25 +++++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 requirements-win.txt diff --git a/README.md b/README.md index 690d1a5..362b219 100644 --- a/README.md +++ b/README.md @@ -93,6 +93,11 @@ Install dependencies: pip install -r requirements.txt ``` +for windows: + +```sh +pip install -r requirements-win.txt +``` #### Model Download diff --git a/requirements-win.txt b/requirements-win.txt new file mode 100644 index 0000000..6b0528b --- /dev/null +++ b/requirements-win.txt @@ -0,0 +1,25 @@ +# PyTorch + TorchVision (CUDA 12.8 build for Windows) +--extra-index-url https://download.pytorch.org/whl/cu128 + +torch +torchvision + + +# Core dependencies +opencv-python>=4.9.0.80 +diffusers>=0.31.0 +transformers>=4.49.0 +tokenizers>=0.20.3 +accelerate>=1.1.1 +tqdm +imageio +easydict +ftfy +dashscope +imageio-ffmpeg +gradio>=5.0.0 +numpy>=1.23.5,<2 + +# Known issue: +# flash_attn is not supported on Windows (fails to build). +# Users can skip it or run the project in WSL/Linux if needed.