Some setup tips for Termux on Android
-
Install Termux: https://play.google.com/store/apps/details?id=com.termux&hl=en or https://termux.com/
-
Open Termux on your android device
- Create .termux/ directory
mkdir .termux/- Create termux-properties file
nano .termux/termux-propertiesadd the following string
extra-keys = [['ESC','/','BACKSPACE','-','|','HOME','UP','END','PGUP'],['TAB','CTRL','ALT',':',';','LEFT','DOWN','RIGHT','PGDN']]and save the file by pressing "CTRL + O" or "CTRL + X"
exit and restart termux or reload settings by typing the following:
termux-reload-settingsAlternatively
mkdir $HOME/.termux/ ;echo "extra-keys = [['ESC','/','BACKSPACE','-','|','HOME','UP','END','PGUP'],['TAB','CTRL','ALT',':',';','LEFT','DOWN','RIGHT','PGDN']]" >> $HOME/.termux/termux.properties << EOFRun the following command in Termux
termux-setup-storagepkg install pythonor
apt install python