From ec4a87ca672f7a62c7b781cf9991b40c329b5bbf Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Tue, 8 Dec 2015 18:47:06 +0530 Subject: [PATCH] [fix] upgrade pip before installing bench --- install_scripts/setup_frappe.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install_scripts/setup_frappe.sh b/install_scripts/setup_frappe.sh index ec7f1447..8d331195 100755 --- a/install_scripts/setup_frappe.sh +++ b/install_scripts/setup_frappe.sh @@ -381,6 +381,8 @@ install_bench() { echo PIP not installed exit 1 fi + + run_cmd sudo $PIP install --upgrade pip run_cmd sudo $PIP install -e /home/$FRAPPE_USER/bench-repo }