You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bug Report: pip install . Fails in Tortoise-TTS Installation on macOS (Apple Silicon)
Description:
When following the official installation instructions for Tortoise-TTS on macOS 14.4 (Apple Silicon, M3 Pro), the command pip install . fails due to incompatible dependencies in requirements.txt.
System Information:
macOS Version: macOS 14.4
Chip: Apple Silicon M3 Pro
Python Version:Python 3.10 (installed via Homebrew)
Bug Report:
pip install .
Fails in Tortoise-TTS Installation on macOS (Apple Silicon)Description:
When following the official installation instructions for Tortoise-TTS on macOS 14.4 (Apple Silicon, M3 Pro), the command
pip install .
fails due to incompatible dependencies inrequirements.txt
.System Information:
Python 3.10
(installed via Homebrew)venv
)pip install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cpu
Steps to Reproduce:
Python 3.10
via Homebrew:python3.10 -m venv .venv source .venv/bin/activate
Expected Behavior:
The
pip install .
command should resolve dependencies and install Tortoise-TTS correctly within the virtual environment.Observed Behavior:
pip
reports conflicting requirements.Possible Causes:
requirements.txt
preventing proper resolution.Suggested Fixes or Workarounds:
requirements.txt
or Apple-specific installation guide.Logs and Errors:
Full error message when running
pip install .
The conflict is caused by:
tortoise-tts 3.0.0 depends on tokenizers==0.14.0
transformers 4.31.0 depends on tokenizers!=0.11.3, <0.14 and >=0.11.1
To fix this you could try to:
ERROR: ResolutionImpossible: for help visit https://pip.pypa.io/en/latest/topics/dependency-resolution/#dealing-with-dependency-conflicts
Would appreciate guidance on:
requirements.txt
.Thanks for your help! 🚀
The text was updated successfully, but these errors were encountered: