36 lines
490 B
Markdown
36 lines
490 B
Markdown
# moonshineASR
|
|
|
|
## dependents
|
|
|
|
[requirements.txt](requirements.txt) list all dependents modules
|
|
use the following command to install the dependents modules
|
|
```
|
|
mspip install -r requirements.txt
|
|
```
|
|
|
|
## install moonshine service
|
|
|
|
```
|
|
cd script
|
|
sudo ./install.sh
|
|
```
|
|
|
|
## make a virtual python environment
|
|
|
|
```
|
|
python3 -m venv ~/ve/ms
|
|
|
|
cat > ~/bin/mspip <<EOF
|
|
#!/usr/bin/bash
|
|
~/ve/ms/bin/python $*
|
|
EOF
|
|
|
|
cat > ~/bin/mspy <<EOF
|
|
#!/usr/bin/bash
|
|
~/ve/ms/bin/python $*
|
|
EOF
|
|
|
|
chmod +x ~/bin/ms*
|
|
```
|
|
|