Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exception in thread "main" ModuleNotFoundError: No module named 'whisperx' #343

Closed
asasas234 opened this issue Jul 12, 2023 · 2 comments
Closed

Comments

@asasas234
Copy link

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:

Name: whisperx
Version: 3.1.1
Summary: Time-Accurate Automatic Speech Recognition using Whisper.
Home-page: https://github.com/m-bain/whisperx
Author: Max Bain
Author-email: 
License: MIT
Location: /Users/lizhibo/miniconda3/lib/python3.10/site-packages
Requires: faster-whisper, ffmpeg-python, nltk, pandas, pyannote.audio, setuptools, torch, torchaudio, transformers
Required-by: 

How can I solve it?

@msimacek
Copy link
Contributor

Hi @asasas234, you need to eval import site in the context before importing anything from a virtualenv or a user site. See https://github.com/oracle/graalpython/blob/master/docs/user/Packages.md

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)

@asasas234
Copy link
Author

master/docs/user/Packages.md

Thank you very much, for avoiding my detours, then I still consider running whisperX in the way of executing the shell in Java

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants