diff options
| author | BonfaceKilz | 2020-04-25 19:28:52 +0300 |
|---|---|---|
| committer | BonfaceKilz | 2020-04-26 07:05:12 +0300 |
| commit | 07bcf381b6be8a2fa7bcd89e81651c11a0a33701 (patch) | |
| tree | f28fc3f68ca985921d698bd19ea390bd460bef38 | |
| parent | ef2c5d4e066833f01ec3486e671f64fb6de25b73 (diff) | |
| download | bh20-seq-resource-07bcf381b6be8a2fa7bcd89e81651c11a0a33701.tar.gz bh20-seq-resource-07bcf381b6be8a2fa7bcd89e81651c11a0a33701.tar.lz bh20-seq-resource-07bcf381b6be8a2fa7bcd89e81651c11a0a33701.zip | |
Wrap extra flags to cater for non-bash terminals
`pip install -e .[web]` does not work on zsh. Wrapping `.web` in quotes makes the command in all terminals
| -rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md index b0b22ff..8b78ebd 100644 --- a/README.md +++ b/README.md @@ -166,7 +166,7 @@ To run it locally: ``` virtualenv --python python3 venv . venv/bin/activate -pip install -e .[web] +pip install -e ".[web]" env FLASK_APP=bh20simplewebuploader/main.py flask run ``` |
