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 /README.md | |
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
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 ``` |