From 219237379c1eea9781b9c278543265908fa1def6 Mon Sep 17 00:00:00 2001 From: khaangnguyeen Date: Fri, 17 Jan 2025 10:55:19 +0700 Subject: [PATCH] update clean uv use --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d0d9a833..5f873ca2 100644 --- a/README.md +++ b/README.md @@ -240,7 +240,7 @@ UV is an extremely fast Python package and project manager, written in Rust. For ```bash git clone https://github.com/comfyanonymous/ComfyUI.git # Clone this repo cd ComfyUI # Move to created folder -uv add --requirements requirements.txt # Add dependencies +uv add -r requirements.txt # Add dependencies ``` # Running @@ -252,7 +252,7 @@ python main.py If using **UV**: ```bash -uv run python main.py +uv run main.py # or in case of activating the virtual env before source .venv/bin/activate python main.py