#!/bin/bash # Installing Python # Update package list sudo apt update # Install Python 3 and pip sudo apt install -y python3-pip # Verify Python installation python3 -V # Finished installing Python