bash script for Installing Pkgs and Requirements

This commit is contained in:
roShan 2021-05-17 10:08:24 +05:30 committed by GitHub
parent ca2a8477dc
commit fa9c8d19c8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

12
install.sh Normal file
View file

@ -0,0 +1,12 @@
#!/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