CenOS7에서 설치를 진행하였습니다. (Python3.7 설치)
$ yum install gcc openssl-devel bzip2-devel libffi-devel -y
python.org에서 원하는 버전을 확인하여 다운로드
$ wget https://www.python.org/ftp/python/3.7.16/Python-3.7.16.tar.xz
$ tar -xvf Python-3.7.16.tar.xz
$ cd Python-3.7.16.tar.xz
$ ./configure --enable-optimization
$ make altinstall
$ which python3.7
/usr/local/bin/python3.7
$ update-alternatives --install /bin/python python /usr/local/bin/python3.7 1
$ python -V
Python 3.7.16
$ python3.7 -m pip install --upgrade pip