# Exit on error:
set -e

wget https://python.org/ftp/python/3.7.16/Python-3.7.16.tar.xz
tar xf Python-3.7.16.tar.xz
cd Python-3.7.16
./configure --prefix=/opt
make install
cd ..
rm -rf Python-3.7.16
rm Python-3.7.16.tar.xz

ln -sv /opt/bin/python3.7 /bin/python3

exit 0
