From 2a5f58f4d6872d0dc24ea4b8e143e8ba45bf3f8c Mon Sep 17 00:00:00 2001 From: paukstelis Date: Sat, 26 Feb 2022 16:46:34 -0500 Subject: [PATCH] Install wheel before octoprint --- octoprint_deploy.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/octoprint_deploy.sh b/octoprint_deploy.sh index 41d542b..65d9d7f 100755 --- a/octoprint_deploy.sh +++ b/octoprint_deploy.sh @@ -513,6 +513,8 @@ prepare () { echo "Installing OctoPrint in /home/$user/OctoPrint" #make venv sudo -u $user python3 -m venv /home/$user/OctoPrint + #pre-install wheel + sudo -u $user /home/$user/OctoPrint/bin/pip install wheel #install oprint sudo -u $user /home/$user/OctoPrint/bin/pip install OctoPrint #start server and run in background