Replies: 3 comments 1 reply
-
looks like I installed Python 3.13 instead of 3.10. |
Beta Was this translation helpful? Give feedback.
-
wait our version 2.0.0 so you won't have to do anything but run a windows/mac/linux script |
Beta Was this translation helpful? Give feedback.
-
While you wait the easiest solution is to use the Docker lolInstall and launch docker on your system:https://www.docker.com/products/docker-desktop/ And then Launch it with the docker run command:🐳 Using DockerYou can also use Docker to run the eBook to Audiobook converter. This method ensures consistency across different environments and simplifies setup. 🚀 Running the Docker ContainerTo run the Docker container and start the Gradio interface, use the following command: -Run with CPU only docker run -it --rm -p 7860:7860 --platform=linux/amd64 athomasson2/ebook2audiobookxtts:huggingface python app.py -Run with GPU Speedup (Nvida graphics cards only) docker run -it --rm --gpus all -p 7860:7860 --platform=linux/amd64 athomasson2/ebook2audiobookxtts:huggingface python app.py This command will start the Gradio interface on port 7860.(localhost:7860) Or try using miniconda to create your python 3.10 env , it's much easier to manage them with and allows you to install multiple version of python and switch between them easily.
|
Beta Was this translation helpful? Give feedback.
-
on installation step 5 (Install Python packages) I input
pip install coqui-tts==0.24.2 pydub nltk beautifulsoup4 ebooklib tqdm gradio==4.44.0
in PowerShell and get error:what can I do? Help please
Beta Was this translation helpful? Give feedback.
All reactions