From c349207b4eaa38bd3190da931cfaf99df2fe187c Mon Sep 17 00:00:00 2001 From: Raffaele Salmaso Date: Wed, 12 Mar 2025 21:03:44 +0100 Subject: [PATCH] docs: use uv for development with no active virtualenv --- README.md | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 146c8fa..6511905 100644 --- a/README.md +++ b/README.md @@ -263,23 +263,17 @@ Requirements: ```bash # Install uv if not already installed -pip install uv +# see https://docs.astral.sh/uv/getting-started/installation/ # Clone repository git clone https://github.com/WaYdotNET/zen-generator.git cd zen-generator -# Create and activate virtual environment with uv -uv venv -source .venv/bin/activate # On macOS/Linux -# or -.venv\Scripts\activate # On Windows - # Install dependencies with uv uv sync # Run tests -python -m pytest +uv run pytest ``` ## Best Practices 💡