From 22c0afc8e2ef2e636d6bd2bcb041003e36a5d710 Mon Sep 17 00:00:00 2001 From: Diogo Felipe de Melo Santiago Date: Sun, 5 Jan 2025 03:28:49 -0300 Subject: [PATCH 1/3] Adding UV installation, dependencies and running examples... --- README.md | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 000d7680..3888af9a 100644 --- a/README.md +++ b/README.md @@ -233,10 +233,31 @@ For models compatible with Ascend Extension for PyTorch (torch_npu). To get star 3. Next, install the necessary packages for torch-npu by adhering to the platform-specific instructions on the [Installation](https://ascend.github.io/docs/sources/pytorch/install.html#pytorch) page. 4. Finally, adhere to the [ComfyUI manual installation](#manual-install-windows-linux) guide for Linux. Once all components are installed, you can run ComfyUI as described earlier. +### UV (Package Manager) + +UV is an extremely fast Python package and project manager, written in Rust. For UV installation, checks [docs](https://docs.astral.sh/uv/). UV help isolation and reproducibility of the desired environment. + +```bash +git clone https://github.com/comfyanonymous/ComfyUI.git comfyui # Clone this repo +cd comfyui # Move to created folder +uv init # Start uv project in current folder +uv add --requirements requirements.txt # Add dependencies +``` # Running -```python main.py``` +```bash +python main.py +``` + +If using UV: + +```bash +uv run python main.py +# or activating the virtual env before +source .venv/bin/activate +python main.py +``` ### For AMD cards not officially supported by ROCm From 76649815d3383a183dcb5fc6b02b2a3bf6571035 Mon Sep 17 00:00:00 2001 From: Diogo Felipe de Melo Santiago Date: Sun, 5 Jan 2025 03:32:13 -0300 Subject: [PATCH 2/3] Adding UV installation, dependencies and running examples... --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 3888af9a..de373601 100644 --- a/README.md +++ b/README.md @@ -238,10 +238,10 @@ For models compatible with Ascend Extension for PyTorch (torch_npu). To get star UV is an extremely fast Python package and project manager, written in Rust. For UV installation, checks [docs](https://docs.astral.sh/uv/). UV help isolation and reproducibility of the desired environment. ```bash -git clone https://github.com/comfyanonymous/ComfyUI.git comfyui # Clone this repo -cd comfyui # Move to created folder -uv init # Start uv project in current folder -uv add --requirements requirements.txt # Add dependencies +git clone https://github.com/comfyanonymous/ComfyUI.git # Clone this repo +cd ComfyUI # Move to created folder +uv init # Start uv project in current folder +uv add --requirements requirements.txt # Add dependencies ``` # Running @@ -250,11 +250,11 @@ uv add --requirements requirements.txt # Add dependencies python main.py ``` -If using UV: +If using **UV**: ```bash uv run python main.py -# or activating the virtual env before +# or in case of activating the virtual env before source .venv/bin/activate python main.py ``` From 28d5474d760ee0950c4347e489f71f2111da6168 Mon Sep 17 00:00:00 2001 From: Diogo Felipe de Melo Santiago Date: Wed, 8 Jan 2025 23:59:19 -0300 Subject: [PATCH 3/3] uv init was removed. With a pyproject.toml file alrealdy in root folder, project is interpreted as ready from uv. --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index de373601..d0d9a833 100644 --- a/README.md +++ b/README.md @@ -240,7 +240,6 @@ 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 init # Start uv project in current folder uv add --requirements requirements.txt # Add dependencies ```