-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Description
Want to try OpenVoice (by MyShell AI) on your Windows PC? Here's a simple step-by-step guide:
📥 Installation Steps
1️⃣ Clone the Repository
Open Command Prompt (press Win+R, type cmd, hit Enter)
Paste this command to download OpenVoice:
git clone [email protected]:myshell-ai/OpenVoice.git
Navigate to the folder:
cd OpenVoice
2️⃣ Set Up a Virtual Environment
Create a virtual environment (keeps dependencies tidy):
python -m venv venv
Activate it:
venv\Scripts\activate.bat
Install OpenVoice in editable mode:
pip install -e .
3️⃣ Create the Run Files
In the OpenVoice folder, create a file named run.py and paste this:
from openvoice import openvoice_app
if __name__ == '__main__':
openvoice_app.run()
Save it.
4️⃣ Create a Launcher (1-Click Start!)
Create another file named Windows_Start_App.bat and paste:
@echo off
title OpenVoice Launcher
cd /d "%~dp0"
call venv\Scripts\activate.bat
python -m run --share
pause
🚀 How to Run
Just double-click Windows_Start_App.bat anytime! It will:
Activate the virtual environment.
Launch OpenVoice with --share (optional: lets you share a public link).
💡 Tips
Ensure you have Python and Git installed first.
If you see errors, check that all dependencies installed correctly.
Enjoy experimenting with OpenVoice! 🎙️✨