py.exe -3.11 -m venv .venv
.\.venv\Scripts\activate
git clone https://github.com/resemble-ai/chatterbox
cd chatterbox
notepad pyproject.toml
[project]
name = “chatterbox-tts”
version = “0.1.4”
description = “Chatterbox: Open Source TTS and Voice Conversion by Resemble AI”
readme = “README.md”
requires-python = “>=3.10”
license = {file = “LICENSE”}
authors = [
{name = “resemble-ai”, email = “engineering@resemble.ai”}
]
dependencies = [
#”numpy>=1.24.0,<1.26.0″,
#”librosa==0.11.0″,
#”s3tokenizer”,
#”torch==2.6.0″,
#”torchaudio==2.6.0″,
#”transformers==4.46.3″,
#”diffusers==0.29.0″,
#”resemble-perth==1.0.1″,
#”conformer==0.3.2″,
#”safetensors==0.5.3″,
#”spacy-pkuseg”,
#”pykakasi==2.3.0″,
#”gradio==5.44.1″,
#”russian-text-stresser @ git+https://github.com/Vuizur/add-stress-to-epub”,
]
[project.urls]
Homepage = “https://github.com/resemble-ai/chatterbox”
Repository = “https://github.com/resemble-ai/chatterbox”
[build-system]
requires = [“setuptools>=61.0”]
build-backend = “setuptools.build_meta”
[tool.setuptools.packages.find]
where = [“src”]
python -m pip install -U pip "setuptools>=75" wheel
pip install numpy<=1.26.0
pip install librosa==0.11.0
pip install s3tokenizer
pip install transformers==4.46.3
pip install resemble-perth==1.0.1
pip install diffusers==0.29.0
pip install conformer==0.3.2
pip install safetensors==0.5.3
pip install spacy-pkuseg
pip install pykakasi==2.3.0
pip install --upgrade gradio gradio_client
git clone https://github.com/Vuizur/add-stress-to-epub.git
cd add-stress-to-epub
pip install -e .
cd ../.. #chatter box path
pip install spacy==3.6.1
pip install typer==0.3.0
pip install torch==2.7.0 torchvision==0.22.0 torchaudio==2.7.0 --index-url https://download.pytorch.org/whl/cu128
pip install .
python multilingual_app.py

