From 44b4a7ffbb68a392f6ed69090c2596a260dd0539 Mon Sep 17 00:00:00 2001 From: Will Miao <13051207myq@gmail.com> Date: Fri, 25 Apr 2025 10:26:01 +0800 Subject: [PATCH] fix: update requirements to include 'toml' and correct pip install command in README. Fixes https://github.com/willmiao/ComfyUI-Lora-Manager/issues/134 --- README.md | 2 +- pyproject.toml | 3 ++- requirements.txt | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c86b423e..b4b80ea5 100644 --- a/README.md +++ b/README.md @@ -146,7 +146,7 @@ Watch this quick tutorial to learn how to use the new one-click LoRA integration ```bash git clone https://github.com/willmiao/ComfyUI-Lora-Manager.git cd ComfyUI-Lora-Manager -pip install requirements.txt +pip install -r requirements.txt ``` ## Usage diff --git a/pyproject.toml b/pyproject.toml index 0b932f65..8d9dd86d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,8 @@ dependencies = [ "piexif", "Pillow", "olefile", # for getting rid of warning message - "requests" + "requests", + "toml" ] [project.urls] diff --git a/requirements.txt b/requirements.txt index c3c5cb67..d09b2434 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,4 +6,5 @@ beautifulsoup4 piexif Pillow olefile -requests \ No newline at end of file +requests +toml \ No newline at end of file