Skip to content

Commit 610af8f

Browse files
ThomasWaldmannNikratio
authored andcommitted
fix install command for zsh
Without the quotes, you would just get: % pip install .[dev] zsh: no matches found: .[dev]
1 parent bebf8ca commit 610af8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

developer-notes/setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ by hand as follows:
1111
$ python3 -m venv .venv # create the venv
1212
$ . .venv/bin/activate # activate it
1313
$ pip install --upgrade pip # upgrade pip
14-
$ pip install .[dev] # install build dependencies
14+
$ pip install ".[dev]" # install build dependencies
1515
$ pip install --no-build-isolation --editable . # install pyfuse3 in editable mode
1616
```
1717

0 commit comments

Comments
 (0)