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

george

[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 install kivy.
Note: I have tried also with : python v 2.7.10 but to no avail.
Note: OS - Windows 7, 64-bit

[CODE] - this snippet is taken from kiwi org homepage.

from kivy.app import App
from kivy.uix.button import Button

class TestApp(App):
    def build(self):
        return Button(text='Hello World')

TestApp().run()

[CURRENT OUTPUT]

[INFO              ] [Logger      ] Record log in C:\Users\testUser\.kivy\logs\kivy_16-01-22_1.txt
[INFO              ] [Kivy        ] v1.9.1
[INFO              ] [Python      ] v2.7.8 (default, Jun 30 2014, 16:08:48) [MSC v.1500 64 bit (AMD64)]
[INFO              ] [Factory     ] 179 symbols loaded

 Traceback (most recent call last):
   File "C:\Users\testUser\Desktop\test_kivy.py", line 1, in <module>
     from kivy.app import App
   File "C:\Python27\lib\site-packages\kivy\app.py", line 327, in <module>
     from kivy.uix.widget import Widget
   File "C:\Python27\lib\site-packages\kivy\uix\widget.py", line 219, in <module>
     from kivy.graphics import (
   File "C:\Python27\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.
qwr

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.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

ImportError: DLL load failed: The specified module could not be found for numpy

From Dev

pyodbc ImportError: DLL load failed: The specified module could > not be found

From Dev

Python: ImportError: DLL load failed: The specified module could not be found

From Java

ImportError: DLL load failed: The specified module could not be found

From Java

ImportError: DLL load failed: The specified module could not be found

From Dev

NLTK ImportError: DLL load failed: The specified module could not be found

From Dev

Scipy ImportError: DLL load failed: The specified module could not be found

From Dev

Pyinstaller ImportError: DLL load failed: The specified module could not be found

From Dev

Tensorflow on windows - ImportError: DLL load failed: The specified module could not be found

From Dev

skimage - ImportError: DLL load failed: The specified module could not be found

From Dev

ImportError: DLL load failed: The specified module could not be found (sklearn)

From Dev

ktrain ImportError: DLL load failed: The specified module could not be found

From Dev

MeCab: “ImportError: DLL load failed: The specified module could not be found.”

From Dev

ver.2 PyGreSQL ERROR: from _pg import * ImportError: DLL load failed: The specified module could not be found

From Dev

Error when trying to import sklearn modules : ImportError: DLL load failed: The specified module could not be found

From Dev

Can run script from pycharm, but not from Terminal. ImportError: DLL load failed: The specified module could not be found

From Dev

Pyinstaller: Import Error: DLL load failed: The specified module could not be found

From Dev

cx_Freeze ImportError: DLL load failed failed while importing _ctypes: The specified module could not be found

From Dev

Trying to install TensorFlow- GPU...failed with ImportError: DLL load failed: The specified module could not be found

From Dev

OpenCV-Python ImportError: DLL load failed: The specified module could not be found

From Dev

ImportError: DLL load failed: The specified module could not be found. Tensorflow Chatbot

From Dev

from scipy.linalg import _fblas: ImportError: DLL load failed: The specified module could not be found

From Dev

Exception has occurred: ImportError DLL load failed while importing pdftotext: The specified module could not be found

From Dev

ImportError: DLL load failed while importing _psycopg: The specified module could not be found

From Dev

Unable to open ANACONDA or SPYDER: ImportError: DLL load failed: The specified module could not be found

From Dev

ImportError: DLL load failed while importing pyexpat: The specified module could not be found

From Dev

Tensorflow-alpha-gpu issue ImportError: DLL load failed: The specified module could not be found

From Dev

ImportError: DLL load failed: The specified module could not be found. While attempting to import TensorFlow

From Dev

(ibm_db) ImportError: DLL load failed while importing ibm_db: The specified module could not be found

Related Related

  1. 1

    ImportError: DLL load failed: The specified module could not be found for numpy

  2. 2

    pyodbc ImportError: DLL load failed: The specified module could > not be found

  3. 3

    Python: ImportError: DLL load failed: The specified module could not be found

  4. 4

    ImportError: DLL load failed: The specified module could not be found

  5. 5

    ImportError: DLL load failed: The specified module could not be found

  6. 6

    NLTK ImportError: DLL load failed: The specified module could not be found

  7. 7

    Scipy ImportError: DLL load failed: The specified module could not be found

  8. 8

    Pyinstaller ImportError: DLL load failed: The specified module could not be found

  9. 9

    Tensorflow on windows - ImportError: DLL load failed: The specified module could not be found

  10. 10

    skimage - ImportError: DLL load failed: The specified module could not be found

  11. 11

    ImportError: DLL load failed: The specified module could not be found (sklearn)

  12. 12

    ktrain ImportError: DLL load failed: The specified module could not be found

  13. 13

    MeCab: “ImportError: DLL load failed: The specified module could not be found.”

  14. 14

    ver.2 PyGreSQL ERROR: from _pg import * ImportError: DLL load failed: The specified module could not be found

  15. 15

    Error when trying to import sklearn modules : ImportError: DLL load failed: The specified module could not be found

  16. 16

    Can run script from pycharm, but not from Terminal. ImportError: DLL load failed: The specified module could not be found

  17. 17

    Pyinstaller: Import Error: DLL load failed: The specified module could not be found

  18. 18

    cx_Freeze ImportError: DLL load failed failed while importing _ctypes: The specified module could not be found

  19. 19

    Trying to install TensorFlow- GPU...failed with ImportError: DLL load failed: The specified module could not be found

  20. 20

    OpenCV-Python ImportError: DLL load failed: The specified module could not be found

  21. 21

    ImportError: DLL load failed: The specified module could not be found. Tensorflow Chatbot

  22. 22

    from scipy.linalg import _fblas: ImportError: DLL load failed: The specified module could not be found

  23. 23

    Exception has occurred: ImportError DLL load failed while importing pdftotext: The specified module could not be found

  24. 24

    ImportError: DLL load failed while importing _psycopg: The specified module could not be found

  25. 25

    Unable to open ANACONDA or SPYDER: ImportError: DLL load failed: The specified module could not be found

  26. 26

    ImportError: DLL load failed while importing pyexpat: The specified module could not be found

  27. 27

    Tensorflow-alpha-gpu issue ImportError: DLL load failed: The specified module could not be found

  28. 28

    ImportError: DLL load failed: The specified module could not be found. While attempting to import TensorFlow

  29. 29

    (ibm_db) ImportError: DLL load failed while importing ibm_db: The specified module could not be found

HotTag

Archive