Skip to content

Commit c481966

Browse files
committed
Added install.sh script for easy installation
1 parent ac71188 commit c481966

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

install.sh

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/bin/bash
2+
3+
# Get code from https://raw.githubusercontent.com/code-yeongyu/AiShell/master/aishell/main.py
4+
curl -o main.py https://raw.githubusercontent.com/code-yeongyu/AiShell/master/aishell/main.py
5+
6+
# Install required packages using pip
7+
pip install typer[all] revchatgpt
8+
9+
# Make the python file executable
10+
chmod +x main.py
11+
12+
# Move the file to environment path
13+
sudo mv main.py /usr/local/bin/aishell

0 commit comments

Comments
 (0)