Fix installation docs and build script for Swift version#19
Open
aeschylus wants to merge 1 commit into
Open
Conversation
The README was missing critical prerequisites for the Swift version: - uv package manager is required (was only listed for Python version) - Python 3.13 must be installed via `uv python install 3.13` The build script had a hardcoded Python version (3.13.5) that would silently fail when a different patch version was installed. Now it dynamically finds the latest 3.13.x and fails with a clear error message if Python isn't installed. Additional README improvements: - Fixed model cache location (~/.cache/huggingface/ not ~/.cache/whisper/) - Added Swift source files to the Files section - Added troubleshooting entries for common issues - Fixed step numbering in installation instructions Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
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
uvand Python 3.13)~/.cache/huggingface/not~/.cache/whisper/)Context
I tried following the README to install the Swift version and ran into several issues:
uv: command not found- The README only listeduvas a prerequisite for the Python version, but the Swift build script requires it toouv, the build "succeeded" but the Python bundle was empty because Python 3.13 wasn't installed viauv python install 3.13cpython-3.13.5butuvinstalled3.13.11, causing a silent failureTest plan
uv python install 3.13🤖 Generated with Claude Code