12 lines
268 B
Bash
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
|