From f201386380184a0139b3eca10648a2cb7850f291 Mon Sep 17 00:00:00 2001 From: Irina Lamarr Date: Sat, 16 Dec 2023 21:25:30 -0300 Subject: [PATCH] fix problems for virtual lab setup --- bin/setup.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/setup.sh b/bin/setup.sh index df0263f..b85de53 100644 --- a/bin/setup.sh +++ b/bin/setup.sh @@ -3,13 +3,13 @@ echo "****************************************" echo " Setting up Capstone Environment" echo "****************************************" -echo "Installing Python 3.8 and Virtual Environment" +echo "Installing Python 3.10 and Virtual Environment" sudo apt-get update -sudo DEBIAN_FRONTEND=noninteractive apt-get install -y python3.8 python3.8-venv +sudo DEBIAN_FRONTEND=noninteractive apt-get install -y python3.10 python3.10-venv -echo "Making Python 3.8 the default..." +echo "Making Python 3.10 the default..." sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.6 1 -sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.8 2 +sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.10 2 echo "Checking the Python version..." python3 --version