[PROBLEM] How can I bypass kivy module error: ImportError: DLL load failed: The specified module could not be found ?
Note: I have installed kivy with: pip i
My two cents on this issue: I had all dependencies installed, but was still getting this issue. The reason was that I installed them using
pip install --user docutils pygments pypiwin32 kivy.deps.sdl2 kivy.deps.glew
Once I removed the --user
flag and re-installed all dependencies and kivy, the system was able to find the DLLs and run the Kivy application.