Installation ============ Basic Installation ------------------ Install from PyPI: .. code-block:: bash pip install fmus-vox Install from source: .. code-block:: bash 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: .. code-block:: bash pip install fmus-vox[stt] Text-to-Speech: .. code-block:: bash pip install fmus-vox[tts] Voice Cloning: .. code-block:: bash pip install fmus-vox[voice] API Server: .. code-block:: bash pip install fmus-vox[api] All Features: .. code-block:: bash pip install fmus-vox[full] Development ----------- For development, install with dev extras: .. code-block:: bash pip install -e ".[dev]" This includes testing, linting, and documentation tools.