Skip to content

Commit a4cc8df

Browse files
committed
add scripts for installation and update
1 parent 6dff63d commit a4cc8df

File tree

4 files changed

+10
-0
lines changed

4 files changed

+10
-0
lines changed

install.bat

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
python -m venv venv
2+
call venv\Scripts\activate.bat
3+
pip install -r requirements.txt

install.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
python -m venv venv
2+
source venv/bin/activate
3+
python src/kubin.py

update.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
git pull
2+
pip install -r requirements.txt

update.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
git pull
2+
pip install -r requirements.txt

0 commit comments

Comments
 (0)