From 0def1f67d33fc7cadb6b4c01a5a9cd9dedbf2095 Mon Sep 17 00:00:00 2001 From: Rodrigo Villatoro Date: Thu, 3 Feb 2022 09:51:55 +0100 Subject: [PATCH] Update CONTRIBUTING.md Modified the command in point four (4) so that it works correctly in all operating systems. More details in this thread: https://github.com/mu-editor/mu/issues/852. --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2c4f56ee2384..bca1b9bf2b1b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -36,7 +36,7 @@ To develop PyG on your machine, here are some tips: 4. Install PyG in editable mode: ```bash - pip install -e .[dev,full] + pip install -e ".[dev,full]" ``` This mode will symlink the Python files from the current local source tree into the Python install. Hence, if you modify a Python file, you do not need to reinstall PyG again and again.