How can I bypass kivy module error: ImportError: DLL load failed: The specified module could not be found?

后端 未结 7 1366
走了就别回头了
走了就别回头了 2020-12-19 04:12

[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         


        
7条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-19 04:30

    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.

提交回复
热议问题