Skip to content

Commit 04c1a01

Browse files
authored
Fix README.md installation for zsh (#478)
zsh uses square brackets for pattern matching which means that if you need to pass literal square brackets as an argument to a command, you either need to escape them or quote the arguments.
1 parent 45f2e57 commit 04c1a01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Installing into a venv is highly recommended.
8888

8989
```
9090
pip install --upgrade -r core/requirements.txt
91-
pip install --upgrade -e core[torch-cpu-nightly,testing]
91+
pip install --upgrade -e "core[torch-cpu-nightly,testing]"
9292
```
9393

9494
Run tests:

0 commit comments

Comments
 (0)