TypeError: argument of type 'NoneType' is not iterable #696
Answered
by
MustafaCQN
Abdurrafey-Siddiqui
asked this question in
Q&A
-
When I try to import whisper I get this error:
|
Beta Was this translation helpful? Give feedback.
Answered by
MustafaCQN
Mar 26, 2023
Replies: 3 comments 11 replies
-
nvm, I forced reinstalled whisper and it worked. |
Beta Was this translation helpful? Give feedback.
11 replies
-
I use Python 3.12 and it shows this same error. |
Beta Was this translation helpful? Give feedback.
0 replies
-
I believe the error comes from installing |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For who has the same error and can't fix:
You seem installed wrong package as
pip install whisper
But you need to install this package
pip install openai-whisper
so you should first uninstall whisper then install openai-whisper
pip uninstall whisper
pip install openai-whisper