pyver=3.12.10
cd $HOME
curl -OL "https://www.python.org/ftp/python/$pyver/Python-$pyver.tgz"
tar xzf "Python-$pyver.tgz"
cd "Python-$pyver"
GDBM_CFLAGS="-I$HOME/bin/gdbm/include" GDBM_LIBS="-L$HOME/bin/gdbm/lib -lgdbm"
./configure --prefix=$HOME/bin/python --with-openssl=$HOME/bin/ssl --with-openssl-rpath=$HOME/bin/ssl/lib
make -j$(nproc)
make install
