fix: update requirements to include 'toml' and correct pip install command in README. Fixes https://github.com/willmiao/ComfyUI-Lora-Manager/issues/134

This commit is contained in:
Will Miao
2025-04-25 10:26:01 +08:00
parent e5bb018d22
commit 44b4a7ffbb
3 changed files with 5 additions and 3 deletions

View File

@@ -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

View File

@@ -12,7 +12,8 @@ dependencies = [
"piexif",
"Pillow",
"olefile", # for getting rid of warning message
"requests"
"requests",
"toml"
]
[project.urls]

View File

@@ -6,4 +6,5 @@ beautifulsoup4
piexif
Pillow
olefile
requests
requests
toml