Join the conversation

Join the community of Machine Learners and AI enthusiasts.

Sign Up
seyf1elislamΒ 
posted an update 16 days ago
Post
674
# πŸš€ Run Qwen3-TTS on Colab GPU or Locally

Run **Qwen3-TTS (Text-to-Speech & Voice Cloning)** with minimal effort. This setup is based on the official HF Space.

### πŸ”— Links
* **Official Space:** Qwen/Qwen3-TTS
* **GitHub Repo:** https://github.com/seyf1elislam/qwen-tts-webui-notebook
* **Colab:** https://github.com/seyf1elislam/qwen-tts-webui-notebook/blob/main/Qwen_TTS_(TTS_%26_Voice_Cloning)_Colab.ipynb

---

### πŸ““ Method 1: Google Colab (Fastest)
1. Open the https://github.com/seyf1elislam/qwen-tts-webui-notebook/blob/main/Qwen_TTS_(TTS_%26_Voice_Cloning)_Colab.ipynb.
2. Add your HF_TOKEN to Google Colab Secrets
3. Ensure you are on a **T4 GPU** runtime.
4. Run all cells. Use the gradio.live link to open the UI.

---

### πŸ’» Method 2: Local Installation
Requires an GPU. Uses uv for faster setup.

# 1. Install uv & Clone
pip install uv
git clone https://huggingface.co/spaces/Qwen/Qwen3-TTS && cd Qwen3-TTS

# 2. Setup Environment
uv venv
uv pip install -r requirements.txt

# 3. Auth & Run
uvx hf auth login
python app.py 
# UI available at: http://localhost:7860/


In this post