From 25d1d0c1f5d04276ba476ae1cfbc906ccba40e74 Mon Sep 17 00:00:00 2001 From: Akshit Kumar Date: Tue, 18 Mar 2025 17:59:33 +0530 Subject: [PATCH] Update pip installation command with proper quoting for dev extra --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 97603ede54..8110fcb081 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ A paper describing seaborn has been published in the [Journal of Open Source Sof Testing ------- -Testing seaborn requires installing additional dependencies; they can be installed with the `dev` extra (e.g., `pip install .[dev]`). +Testing seaborn requires installing additional dependencies; they can be installed with the `dev` extra (e.g., `pip install ."[dev]"`). To test the code, run `make test` in the source directory. This will exercise the unit tests (using [pytest](https://docs.pytest.org/)) and generate a coverage report.