From c33766b7f0b2ec4c4e7e3dfae0e2a7274e7fcb9d Mon Sep 17 00:00:00 2001 From: ncclementi Date: Sat, 12 Jul 2025 16:05:45 -0700 Subject: [PATCH] add quotes to bash instruction to guarantee execution --- TRANSLATING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TRANSLATING.md b/TRANSLATING.md index 2c105f579..5cc83f314 100644 --- a/TRANSLATING.md +++ b/TRANSLATING.md @@ -44,7 +44,7 @@ To create a virtual environment and install the development dependencies for the $ cd ./python-package-guide $ python -m venv .venv $ source .venv/bin/activate -$ pip install .[dev] +$ pip install '.[dev]' ``` TODO: This section needs more work or to be replaced with a reference to the CONTRIBUTING guide.