From 637c2cb55525afb303738daa145ac295fc82fdde Mon Sep 17 00:00:00 2001 From: cheater <195390+cheater@users.noreply.github.com> Date: Wed, 6 Nov 2019 08:40:46 +0100 Subject: [PATCH] fix server dev script (close #3246) (#3257) Signed-off-by: cheater <195390+cheater@users.noreply.github.com> --- scripts/dev.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/dev.sh b/scripts/dev.sh index 5441e5ff054..e7d493d7c17 100755 --- a/scripts/dev.sh +++ b/scripts/dev.sh @@ -305,6 +305,7 @@ elif [ "$MODE" = "test" ]; then if [ ! -d "$PY_VENV" ]; then python3 -m venv "$PY_VENV" source "$PY_VENV/bin/activate" + pip3 install wheel pip3 install -r requirements.txt else echo_pretty "It looks like python dependencies have been installed already. Skipping."