Please help me install it on mac silicon #575
Unanswered
mesutatalik
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
i tried to install mac silicon through the steps..
python3.10 -m venv .venv
source .venv/bin/activate
pip install numba inflect
pip install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cpu
pip install transformers
git clone https://github.com/neonbjb/tortoise-tts.git
cd tortoise-tts
pip install .
python tortoise/do_tts.py --text "I'm going to speak this" --voice random --preset fast
Traceback (most recent call last):
File "/Users/felixduog/tortoise-tts/tortoise/do_tts.py", line 31, in
tts = TextToSpeech(models_dir=args.model_dir, use_deepspeed=args.use_deepspeed, kv_cache=args.kv_cache, half=args.half)
File "/Users/felixduog/tortoise-tts/tortoise/api.py", line 223, in init
self.autoregressive_batch_size = pick_best_batch_size_for_gpu() if autoregressive_batch_size is None else autoregressive_batch_size
File "/Users/felixduog/tortoise-tts/tortoise/api.py", line 193, in pick_best_batch_size_for_gpu
import psutil
ModuleNotFoundError: No module named 'psutil'
I get the following result. Can anyone help me? I don't know much about coding. Thank you very much
Beta Was this translation helpful? Give feedback.
All reactions