# This is for the old Python 2.x, for a more recent version see Python
wget -c https://www.python.org/ftp/python/2.7.18/Python-2.7.18.tar.xz
tar -xJf Python-2.7.18.tar.xz
cd Python-2.7.18
mkdir -p build
cd build
../configure --prefix="/usr" --enable-shared --enable-unicode=ucs4
make # Doesn't mind -j#
make install