Installation
Basic Installation
Install from PyPI:
pip install fmus-vox
Install from source:
git clone https://github.com/mexyusef/fmus-vox.git
cd fmus-vox
pip install -e .
With Specific Features
fmus-vox uses extras to install optional dependencies:
Speech-to-Text:
pip install fmus-vox[stt]
Text-to-Speech:
pip install fmus-vox[tts]
Voice Cloning:
pip install fmus-vox[voice]
API Server:
pip install fmus-vox[api]
All Features:
pip install fmus-vox[full]
Development
For development, install with dev extras:
pip install -e ".[dev]"
This includes testing, linting, and documentation tools.