mirror of
https://github.com/truroshan/py-cowin-termux
synced 2025-04-20 17:24:36 +05:30
bash script for Installing Pkgs and Requirements
This commit is contained in:
parent
ca2a8477dc
commit
fa9c8d19c8
12
install.sh
Normal file
12
install.sh
Normal 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
|
Loading…
Reference in a new issue