Python3.8.5 をCentOSにインストール

1. Python 3.8.5 をダウンロード

今回は、インターネットに接続できないサーバでしたので、以下からダウンロードしたものをサーバに配置して、インストールする。

https://www.python.org/downloads/release/python-385/

2. 解凍

tar xvf Python-3.8.3.tgz

3. インストール

./configure
sudo make altinstall

# 参考
[https://computingforgeeks.com/how-to-install-python-on-3-on-centos/:title]