[fix] utils/serax.sh create_pyenv() - drop duplicate 'pip install .'

The wrong and unnecessary `pip install .` is executed in /usr/local/searx and is
responsible for the error message:

    ERROR: File "setup.py" not found. Directory cannot be installed in editable mode: /usr/local/searx

The correct pip-install comes right after changing to `cd ${SEARX_SRC}`.

Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
pull/1/head
Markus Heiser 4 years ago
parent c748fc66cf
commit 2e58988191

@ -503,7 +503,6 @@ pip install -U pip
pip install -U setuptools
pip install -U wheel
pip install -U pyyaml
pip install -U -e .
cd ${SEARX_SRC}
pip install -e .
EOF

Loading…
Cancel
Save