How can I bypass kivy module error: ImportError: DLL load failed: The specified module could not be found?
On Windows, glew
and sdl2
are required as dependencies. I had the same problem. Installing all the dependencies
python -m pip install docutils pygments pypiwin32 kivy.deps.sdl2 kivy.deps.glew
and then reinstalling kivy worked for me.
If you have already installed kivy in windows without installing dependencies use these command separately It will work,
python -m pip install kivy.deps.sdl2
python -m pip install kivy.deps.glew
I had the same problem. The answer is:
pip uninstall docutils pygments pypiwin32 kivy.deps.sdl2 kivy.deps.glew
-clears previous versions from user Folder and then again:pip install docutils pygments pypiwin32 kivy.deps.sdl2 kivy.deps.glew
And it works fine!