diff options
author | BonfaceKilz | 2020-04-25 19:28:52 +0300 |
---|---|---|
committer | BonfaceKilz | 2020-04-25 19:28:52 +0300 |
commit | 8e8df40378244daf71edb8d3a469d7cbe59ddcdc (patch) | |
tree | 1a1ae1ae4bb41577c2beccc15a6042f673d4beef /README.md | |
parent | 73d36d4b91cd0ac7b2112f20eb7d88acd981827a (diff) | |
download | bh20-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
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 ``` |