From f088f43b406613ad1fd9aff7c8db1909129a7c40 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 5 Jan 2019 20:04:54 +0100 Subject: [PATCH] Install numpy before py_find_1st --- setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.sh b/setup.sh index 9e969be2b..55bd746e1 100755 --- a/setup.sh +++ b/setup.sh @@ -30,9 +30,9 @@ function updateenv() { echo "-------------------------" source .env/bin/activate echo "pip3 install in-progress. Please wait..." - pip3 install --quiet --upgrade pip + # Install numpy first to have py_find_1st install clean + pip3 install --quiet --upgrade pip numpy pip3 install --quiet --upgrade -r requirements.txt - pip3 install --quiet -r requirements.txt read -p "Do you want to install dependencies for dev [Y/N]? " if [[ $REPLY =~ ^[Yy]$ ]]