This repository has been archived on 2025-01-20. You can view files and clone it, but cannot push or open issues or pull requests.
cowin-termux/install.sh

13 lines
194 B
Bash

#!/bin/sh
# Install script for termux
install_pkg(){
pkg i python termux-api vim-python
}
install_requirements(){
pip install -r requirements.txt
}
install_pkg && install_requirements