aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBonfaceKilz2020-04-25 19:28:52 +0300
committerBonfaceKilz2020-04-25 19:28:52 +0300
commit8e8df40378244daf71edb8d3a469d7cbe59ddcdc (patch)
tree1a1ae1ae4bb41577c2beccc15a6042f673d4beef
parent73d36d4b91cd0ac7b2112f20eb7d88acd981827a (diff)
downloadbh20-seq-resource-8e8df40378244daf71edb8d3a469d7cbe59ddcdc.tar.gz
bh20-seq-resource-8e8df40378244daf71edb8d3a469d7cbe59ddcdc.tar.lz
bh20-seq-resource-8e8df40378244daf71edb8d3a469d7cbe59ddcdc.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.md2
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
```