Neomindapp commited on
Commit
e31d32b
·
verified ·
1 Parent(s): eea36d6

Rename install.sh to setup.sh

Browse files
Files changed (2) hide show
  1. install.sh +0 -14
  2. setup.sh +4 -0
install.sh DELETED
@@ -1,14 +0,0 @@
1
- #!/bin/bash
2
-
3
- # Install system dependencies
4
- if [[ "$OSTYPE" == "linux-gnu"* ]]; then
5
- sudo apt-get update
6
- sudo apt-get install -y espeak
7
- elif [[ "$OSTYPE" == "darwin"* ]]; then
8
- brew install espeak
9
- else
10
- echo "Please install espeak manually for Windows."
11
- fi
12
-
13
- # Install Python dependencies
14
- pip install -r requirements.txt
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
setup.sh ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ #!/bin/bash
2
+ apt-get update
3
+ apt-get install -y espeak-ng
4
+