From 2835253eee7a4d70d94e6ceb51ea0dcdc63c73dd Mon Sep 17 00:00:00 2001 From: Yury Kossakovsky Date: Tue, 13 May 2025 17:30:15 -0600 Subject: [PATCH] Update system preparation script to include python3-pip installation - Added python3-pip to the list of standard CLI tools installed in the system preparation script, enhancing the environment setup for Python package management. --- scripts/01_system_preparation.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/01_system_preparation.sh b/scripts/01_system_preparation.sh index eb04c42..c1ea165 100755 --- a/scripts/01_system_preparation.sh +++ b/scripts/01_system_preparation.sh @@ -16,7 +16,7 @@ log_info "Installing standard CLI tools..." apt install -y \ htop git curl make unzip ufw fail2ban python3 psmisc whiptail \ build-essential ca-certificates gnupg lsb-release openssl \ - debian-keyring debian-archive-keyring apt-transport-https python3-dotenv + debian-keyring debian-archive-keyring apt-transport-https python3-pip python3-dotenv # Configuring Firewall (UFW) log_info "Configuring firewall (UFW)..."