We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac71188 commit c481966Copy full SHA for c481966
install.sh
@@ -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