Pythonインストール(Amazon Linux 2023)

必要なパッケージをインストール

dnf install libffi-devel openssl-devel zlib-devel

インストールするバージョンのPythonを公式からダウンロード

Welcome to Python.org

cd /usr/local/src
wget -c https://www.python.org/ftp/python/3.12.2/Python-3.12.2.tgz

解凍してインストール

tar zxvf Python-3.12.2.tgz
cd Python-3.12.2
./configure --with-ensurepip
make
make install