This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" To use: install LLM studio (or Ollama), clone OpenVoice, run this script in the OpenVoice directory | |
git clone https://github.com/myshell-ai/OpenVoice | |
cd OpenVoice | |
git clone https://huggingface.co/myshell-ai/OpenVoice | |
cp -r OpenVoice/* . | |
pip install whisper pynput pyaudio | |
""" | |
from openai import OpenAI | |
import time |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Here are the steps to install node, npm and express on Amazon 32 bit Linux AMI: | |
sudo yum install gcc-c++ | |
sudo yum install openssl-devel | |
wget http://nodejs.org/dist/node-v0.4.2.tar.gz (Pick the stable version available) | |
tar -zxvf node-v0.4.2.tar.gz | |
cd node-v0.4.2 | |
export JOBS=2 | |
./configure | |
make |