mirror of
https://github.com/open-webui/open-webui.git
synced 2026-07-15 12:36:27 -05:00
[GH-ISSUE #10575] [linux][solveable] ImportError: libctranslate2-bc15bf3f.so.4.5.0: cannot enable executable stack as shared object requires: Invalid argument #15941
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ProtoBelisarius on GitHub (Feb 22, 2025).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/10575
Using the python package for open-webui - faster-whisper doesnt work or rather while it records the microphone, something after that breaks.
It can be fixed for now using patchelf instead of execstack as that didnt work for me.
Original solution here: https://github.com/OpenNMT/CTranslate2/issues/1849#issuecomment-2664106316
I used the following command to fix the problem for myself:
patchelf --clear-execstack /home/USERNAME/OpenWebUI/venv/lib/python3.11/site-packages/ctranslate2.libs/libctranslate2-bc15bf3f.so.4.5.0Just find the path to your misbehaving file and use it instead of my command.
A PR that should fix this in ctranslate2 was submitted 3 days ago, but I dont know how long it takes until this is worked in, so I want to provide a solution here incase someone else stumbles over the issue.