Files
docker-based-power-button-t…/requirements.sh
2025-11-01 06:09:32 +05:30

12 lines
268 B
Bash

#!/bin/bash
set -e
# Update and install Python 3.10 + venv + distutils
apt-get update
apt-get install -y software-properties-common curl wget
add-apt-repository ppa:deadsnakes/ppa -y
apt-get update
apt-get install -y python3.10 python3.10-venv python3.10-distutils