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

后端 未结 7 1367
走了就别回头了
走了就别回头了 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:26

    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.

提交回复
热议问题