Quote square brackets in shell commands.

This ensures compatibility with zsh.

Fix #2316.
This commit is contained in:
Aymeric Augustin
2019-12-27 08:50:25 +01:00
parent 8c67b529f6
commit 3233b58ad4
4 changed files with 5 additions and 5 deletions

View File

@@ -120,14 +120,14 @@ Depending on which framework is installed (TensorFlow 2.0 and/or PyTorch), the i
Here's the easiest way to run tests for the library:
```bash
pip install -e .[testing]
pip install -e ".[testing]"
make test
```
and for the examples:
```bash
pip install -e .[testing]
pip install -e ".[testing]"
pip install -r examples/requirements.txt
make test-examples
```