From a72a8f052bd8fe9f4e506411307f6f34a8e94574 Mon Sep 17 00:00:00 2001 From: Allen McKnight Date: Wed, 6 Aug 2025 16:51:50 -0500 Subject: [PATCH] Changing node-scraper to use venv rather than virtualenv --- dev-setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-setup.sh b/dev-setup.sh index 5bab4c5e..7cafc606 100755 --- a/dev-setup.sh +++ b/dev-setup.sh @@ -1,7 +1,7 @@ # Create venv if not already present if [ ! -d "venv" ]; then - python3 -m pip install virtualenv - python3 -m virtualenv venv + python3 -m pip install venv + python3 -m venv venv fi # Activate the desired venv