All checks were successful
Auto Changelog & Release / release (push) Successful in 13s
9 lines
227 B
Bash
Executable File
9 lines
227 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# install-python.sh – installs the latest Python version through apt
|
|
# Usage: sudo ./install-python.sh
|
|
set -euo pipefail
|
|
|
|
apt update
|
|
apt install -y python3
|
|
|
|
echo "✅ Python $(python3 --version) installed" |