Discussion:
[Tutor] Regarding to kivy installation
shubham sharma
2015-11-07 03:39:28 UTC
Permalink
Respected sir/madam,
hello to all members of python.org . I had successfully downloaded kivy on
window7 64-bit version.but when i try to install it then it show me error
like:
Traceback (most recent call last):
File "C:/Python27/kivyhello.py", line 4, in <module>
from kivy.app import App
File "C:/Python27\kivy\app.py", line 316, in <module>
from kivy.base import runTouchApp, stopTouchApp
File "C:/Python27\kivy\base.py", line 30, in <module>
from kivy.event import EventDispatcher
File "C:/Python27\kivy\event.py", line 8, in <module>
import kivy._event
ImportError: DLL load failed: %1 is not a valid Win32 application.and the
application close .
i kindly request to all please suggest me some ways to solve it .
Thank you
_______________________________________________
Tutor maillist - ***@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor
Alan Gauld
2015-11-07 09:20:40 UTC
Permalink
Post by shubham sharma
Respected sir/madam,
hello to all members of python.org . I had successfully downloaded kivy on
window7 64-bit version.but when i try to install it then it show me error
File "C:/Python27/kivyhello.py", line 4, in <module>
from kivy.app import App
File "C:/Python27\kivy\app.py", line 316, in <module>
from kivy.base import runTouchApp, stopTouchApp
File "C:/Python27\kivy\base.py", line 30, in <module>
from kivy.event import EventDispatcher
File "C:/Python27\kivy\event.py", line 8, in <module>
import kivy._event
ImportError: DLL load failed: %1 is not a valid Win32 application.and the
application close .
i kindly request to all please suggest me some ways to solve it .
Can you tell us exactly what you did to install it after you
downloaded it?

Also, I think there is a kivy support forum who may be able
give more detailed help than we can on the tutor list.

Alan G
Author of the Learn to Program web site
http://www.alan-g.me.uk/
http://www.amazon.com/author/alan_gauld
Follow my photo-blog on Flickr at:
http://www.flickr.com/photos/alangauldphotos


_______________________________________________
Tutor maillist - ***@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor
Laura Creighton
2015-11-07 13:51:21 UTC
Permalink
Post by shubham sharma
Respected sir/madam,
hello to all members of python.org . I had successfully downloaded kivy on
window7 64-bit version.but when i try to install it then it show me error
File "C:/Python27/kivyhello.py", line 4, in <module>
from kivy.app import App
File "C:/Python27\kivy\app.py", line 316, in <module>
from kivy.base import runTouchApp, stopTouchApp
File "C:/Python27\kivy\base.py", line 30, in <module>
from kivy.event import EventDispatcher
File "C:/Python27\kivy\event.py", line 8, in <module>
import kivy._event
ImportError: DLL load failed: %1 is not a valid Win32 application.and the
application close .
i kindly request to all please suggest me some ways to solve it .
Thank you
Your problem is likely that you need to set your path properly so the libraries can be found.
http://stackoverflow.com/questions/14629818/importerror-dll-load-failed-1-is-not-a-valid-win32-application

I am not a windows user, but
https://docs.python.org/3/using/windows.html says how you are to configure
your PATH.

And this mailing list is full of windows users, all of whom can probably
explain this a whole lot better than I, or the docs can, given that
they know this is the (likely) problem.

Laura


_______________________________________________
Tutor maillist - ***@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor

Loading...