# Exit on error:
set -e

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

ln -sv /local/bin/python3 /bin/python3

exit 0
