Skip to content

Latest commit

 

History

History
21 lines (12 loc) · 1.27 KB

File metadata and controls

21 lines (12 loc) · 1.27 KB

install and use python in termux with a single line of code.

DON'T USE (need to fix)

tutorial

copy and paste the code to install. Warning!!!! you must have F-Droid version of termux in order to work

code for python latest:

apt update && apt upgrade --assume-yes && apt-get install wget --assume-yes && wget -O https://raw.githubusercontent.com/Exanoff12/python_in-termux-onescript/main/pythonLATEST.sh pythonLATEST.sh && chmod +x pythonLATEST.sh && bash pythonLATEST.sh

code for python 3 :

apt update && apt upgrade --assume-yes && apt-get install wget --assume-yes && wget -O https://raw.githubusercontent.com/Exanoff12/python_in-termux-onescript/main/python3.sh python3.sh && chmod +x python3.sh && bash python3.sh

code for python 2 :

apt update && apt upgrade --assume-yes && apt-get install wget --assume-yes && wget -O https://raw.githubusercontent.com/Exanoff12/python_in-termux-onescript/main/python2.sh python2.sh && chmod +x python2.sh && bash python2.sh

code for any version of python (beta) :

apt update && apt upgrade --assume-yes && apt-get install wget --assume-yes && wget -O https://raw.githubusercontent.com/Exanoff12/python_in-termux-onescript/main/pythonANY.sh pythonANY.sh && chmod +x pythonANY.sh && bash pythonANY.sh