From 1d028021720b45104f37ece6072782d88bfe6190 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Deniz=20=C5=9Eafak?= Date: Mon, 20 Oct 2025 03:21:27 +0300 Subject: [PATCH] Add "How to fix "[WinError 1114]" error to readme --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index a49bf24..6456887 100644 --- a/README.md +++ b/README.md @@ -98,6 +98,8 @@ pip3 install --pre torch torchvision torchaudio --index-url https://download.pyt > See [How to fix "No matching distribution found" error?](#no-matching-distribution-found) +> See [How to fix "[WinError 1114] A dynamic link library (DLL) initialization routine failed" error?](#WinError-1114) + > See [How to use "uv" instead of "pip"?](#use-uv-instead-of-pip) > Special thanks to [@hg000125](https://github.com/hg000125) for his contribution in [#23](https://github.com/denizsafak/abogen/issues/23). AMD GPU support is possible thanks to his work. @@ -373,6 +375,22 @@ This will start Abogen in command-line mode and display detailed error messages. +
+How to fix "[WinError 1114] A dynamic link library (DLL) initialization routine failed" error? + + +> I faced this error when trying to run Abogen in a virtual Windows machine without GPU support. Here's how I fixed it: +> If you installed Abogen using the Windows installer `(WINDOWS_INSTALL.bat)`, go to Abogen's folder (that contains `python_embedded`), open your terminal there and run: +> ```bash +> python_embedded\python.exe -m pip install torch==2.8.0 torchaudio==2.8.0 torchvision==0.23.0 +> ``` +> If you installed Abogen using pip, open your terminal in the virtual environment and run: +> ```bash +> pip install torch==2.8.0 torchaudio==2.8.0 torchvision==0.23.0 +> ``` + +
+
How to fix Japanese audio not working?