From a560b9fdab0f98941576fe8a34b15e9bfe64af39 Mon Sep 17 00:00:00 2001 From: mmcwilliams Date: Thu, 14 Dec 2023 11:31:59 -0500 Subject: [PATCH] Install venv with python3.9 --- scripts/install_yolov5.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install_yolov5.sh b/scripts/install_yolov5.sh index e781f90..7b19314 100644 --- a/scripts/install_yolov5.sh +++ b/scripts/install_yolov5.sh @@ -5,6 +5,6 @@ if [ ! -d yolov5/.git ]; then fi cd yolov5 -python -m venv env +python3.9 -m venv env source env/bin/activate python3.9 -m pip install -r ../requirements_yolov5.txt