🧑💻How to Downgrade Python from 3.12 to 3.11 in Termux
⭕First Download Termux 32 bit : Download
⭕If you already installed python version 3.12 first uninstall it
pkg uninstall python
⭕Now Give all the command in Termux
apt update
apt upgrade
pkg install binutils
curl
https://ai-speaker.com/apt/dists/dom-dev/beta/binary-arm/python_3.10.4_arm.deb --output python.deb
apt install ./python.deb
📝You will get an error, ignore it. Just give next commands
ls
mkdir build
cd build
ar x ../python.deb
tar Jvxf data.tar.xz
cp -R data/data/pl.sviete.dom/files/usr/* $PREFIX/
cd ..
rm -rf data
echo "export LD_LIBRARY_PATH=$PREFIX/lib" > .bashrc
source .bashrc
⭕Check python installed or not
python
⭕Type ctrl-d to exit
curl
https://bootstrap.pypa.io/get-pip.py --output
get-pip.pypython
get-pip.py⭕Below command to check pip list
pip list
⭕Check python version
python --version
🎉Successfully Downgraded from Python3.12 to Python3.10 in Termux