From fe0d01495f9a549cbe1153f4d109017816f72858 Mon Sep 17 00:00:00 2001 From: filipstrand Date: Mon, 9 Sep 2024 18:52:43 +0200 Subject: [PATCH] Suggest first setting up a venv when installing --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4ebc13a..709320e 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,11 @@ like [Numpy](https://numpy.org) and [Pillow](https://pypi.org/project/pillow/) f - [x] FLUX.1-Dev ### Installation -For users, the easiest way to install MFLUX is via pip: +For users, the easiest way to install MFLUX is to first create a new virtual environment to isolate dependencies: + ``` + mkdir -p mflux && cd mflux && python3 -m venv .venv && source .venv/bin/activate + ``` +This creates and activates a virtual environment in the `mflux` folder. After that, install MFLUX via pip: ``` pip install -U mflux ```