How to fix kivy.graphics dll problem?

Sigh ... Here's another question that Python never ends with module problems. I have Python 3.4 and Windows 8. I can import Kivy in order, but if I try to import kivy.graphics, I am facing a DLL problem:

File "C:\Users\Young\Anaconda3\lib\site-packages\kivy\graphics\__init__.py", line 89, in <module> from kivy.graphics.instructions import Callback, Canvas, CanvasBase, \ ImportError: DLL load failed: The specified module could not be found. 

Are there any clues?

+1
source share
1 answer

I had the same error and fixed it by reinstalling kivy as administrator.

Right-click on cmd.exe and select "Run as Administrator." Then follow the installation instructions here .

+2
source

All Articles