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
I want to execute a python script through graalvm, and the error is as follows:
Exception in thread "main" ModuleNotFoundError: No module named 'whisperx'
at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:399)
at com.youtube.dubbing.transcription.service.WhisperXServiceImpl.main(WhisperXServiceImpl.java:37)
I confirmed that the script itself is fine, I can execute it normally in my python development tool, and I execute pip show whisperx The output is as follows:
Note you cannot use packages installed for CPython, the C extensions are not binary compatible. You have to install your packages into a separate environment created with GraalPy.
I see that whisperx dependes on transformers. That package currently doesn't work , it's work in progress (#276)
I want to execute a python script through graalvm, and the error is as follows:
I confirmed that the script itself is fine, I can execute it normally in my python development tool, and I execute
pip show whisperx
The output is as follows:How can I solve it?
The text was updated successfully, but these errors were encountered: