From 407feec20e88291d215d125f848b64f7feeda65d Mon Sep 17 00:00:00 2001 From: Adam <24621027+adoyle0@users.noreply.github.com> Date: Thu, 4 May 2023 18:11:40 -0400 Subject: [PATCH] use ensurepip to ensure pip --- api/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/run b/api/run index 1153d9b..c3424cd 100755 --- a/api/run +++ b/api/run @@ -1,7 +1,7 @@ #!/bin/bash source bin/activate && -pip install --upgrade pip && +python -m ensurepip && pip install --upgrade -r requirements.txt && clear && python main.py