jhj0517 commited on
Commit
f1cd15f
·
1 Parent(s): b7e701b

remove bash scripts

Browse files
Files changed (2) hide show
  1. Install.sh +0 -21
  2. start-webui.sh +0 -12
Install.sh DELETED
@@ -1,21 +0,0 @@
1
- #!/bin/bash
2
-
3
- if [ ! -d "venv" ]; then
4
- echo "Creating virtual environment..."
5
- python -m venv venv
6
- fi
7
-
8
- source venv/bin/activate
9
- pip install -r requirements.txt
10
-
11
- if [ $? -ne 0 ]; then
12
- echo ""
13
- echo "Requirements installation failed. please remove venv folder and run install.sh again."
14
- deactivate
15
- exit 1
16
- fi
17
-
18
- echo ""
19
- echo "Requirements installed successfully."
20
-
21
- deactivate
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
start-webui.sh DELETED
@@ -1,12 +0,0 @@
1
- #!/bin/bash
2
-
3
- source venv/bin/activate
4
-
5
- PYTHON="venv/bin/python"
6
- echo "venv ${PYTHON}"
7
- echo ""
8
-
9
- python app.py $*
10
-
11
- deactivate
12
-