Compare commits

...

5 Commits

Author SHA1 Message Date
Diogo Santiago
b9d9544761
Merge 28d5474d76 into 2307ff6746 2025-01-09 03:00:08 +00:00
Diogo Felipe de Melo Santiago
28d5474d76 uv init was removed. With a pyproject.toml file alrealdy in root folder, project is interpreted as ready from uv. 2025-01-08 23:59:19 -03:00
Diogo Santiago
e231676a77
Merge branch 'comfyanonymous:master' into master 2025-01-08 23:57:03 -03:00
Diogo Felipe de Melo Santiago
76649815d3 Adding UV installation, dependencies and running examples... 2025-01-05 03:32:13 -03:00
Diogo Felipe de Melo Santiago
22c0afc8e2 Adding UV installation, dependencies and running examples... 2025-01-05 03:28:49 -03:00

View File

@ -233,10 +233,30 @@ 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 # Clone this repo
cd ComfyUI # Move to created 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 in case of activating the virtual env before
source .venv/bin/activate
python main.py
```
### For AMD cards not officially supported by ROCm