Fix The "'nopython' keyword argument was not supplied to the 'numba.jit' decorator." Warning. #1409
rudymohammadbali
started this conversation in
General
Replies: 2 comments 8 replies
-
I get the same error message. I realize this is a complete newbie question but where exactly can I find this file and how can I edit it? |
Beta Was this translation helpful? Give feedback.
7 replies
-
@phineas-pta Thanks again for the reply. I'm looking for a kind forum where I can get guidance on how to take pieces of GitHub Python scripts here to make a program I really need. Thanks. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Every time you run the whisper module it shows this warning:
Solve the warning
Add nopython=True inside @numba.jit() decorator in file *\lib\site-packages\whisper\timing.py:58
Like this:
@numba.jit(nopython=True)
Beta Was this translation helpful? Give feedback.
All reactions