Merged
Conversation
Kokoro TTS's phonemizer (misaki) auto-downloads the en_core_web_sm spacy model via spacy.cli.download(), which internally calls pip install. uv venvs don't include pip by default, causing "No module named pip" errors. Adding pip as a dependency ensures the download works. This becomes redundant once misaki publishes a fix upstream. Fixes #343
kovtcharov
approved these changes
Feb 17, 2026
github-merge-queue bot
pushed a commit
that referenced
this pull request
Feb 24, 2026
## Summary - Add release notes for v0.15.4.1 (`docs/releases/v0.15.4.1.mdx`) - Bump `__version__` from `0.15.4` → `0.15.4.1` in `src/gaia/version.py` - Add `releases/v0.15.4.1` to nav and update navbar label in `docs/docs.json` Closes #336, #339, #344, #345, #342, #348, #346 > **Note:** Do not tag `v0.15.4.1` until after this PR merges. --------- Co-authored-by: Tomasz Iniewicz <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
pipto the[talk]extras insetup.pyto fix"No module named pip"when runninggaia talkFixes #343
Root Cause
Kokoro TTS depends on
misaki(phonemizer), which auto-downloads theen_core_web_smspacy model viaspacy.cli.download(). Internally, spacy callspip installto fetch the model. However,uv-created virtual environments don't includepipby default, causing the import to fail withModuleNotFoundError: No module named 'pip'.Misaki's maintainers already fixed this upstream by adding
pip>=25.0.1as a dependency (hexgrad/misaki#77), but the fix hasn't been released to PyPI yet (latest is 0.9.4). Addingpipexplicitly to our[talk]extras resolves the issue now and becomes harmless (but redundant) once misaki ships the fix.Testing
Verified locally on Linux (aarch64, Docker, no audio hardware):
uv pip install -e ".[talk]"— confirmspip==26.0.1is installed into the venvpython -m pip --version— confirms pip is importablegaia talk --no-tts --whisper-model-size tiny— successfully initializes TalkSDK, downloads Whisper model, and reaches the "Listening..." state (fails only on audio device access, which is expected without a mic)No
"No module named pip"error observed.Test plan
uv pip install -e ".[talk]"installspipinto the venvgaia talkgets past module imports without errorgaia talkon a machine with audio hardware