From 9e7f2a369fd593cd54ff1153e74e1a659a161641 Mon Sep 17 00:00:00 2001 From: caue Date: Tue, 11 Nov 2025 20:51:26 -0300 Subject: [PATCH] fix: Modify Contributing.md instructions to user venv creation command that is more standardized --- CONTRIBUTING.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6ef344c602..97182044d4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -80,13 +80,13 @@ Open a Bash terminal in the `dash` repository, Git Bash terminal for example on On some Linux/Mac environments, use `.` instead of `source` ```bash - $ python3 -m venv .venv/dev - $ source .venv/dev/bin/activate + $ python3 -m venv venv + $ source venv/bin/activate ``` - Windows: ```bash - $ python -m venv .venv/dev - $ source .venv/dev/scripts/activate + $ python -m venv venv + $ source venv/scripts/activate ``` Install dash and dependencies: