Skip to content

Commit 68136a7

Browse files
authored
[MINOR][Documentation] Fix pip install with test dependencies (#463)
Adding missing double quotes so the install with tests works.
1 parent 04c4092 commit 68136a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ Tests use [pytest](https://docs.pytest.org/):
259259

260260
```shell
261261
# Install dependencies
262-
pip install -e .[test]
262+
pip install -e ".[test]"
263263

264264
# Run tests
265265
pytest -vvx

0 commit comments

Comments
 (0)