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

Diff for: install.bat

+3
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

Diff for: install.sh

+3
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

Diff for: update.bat

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
git pull
2+
pip install -r requirements.txt

Diff for: update.sh

+2
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)