[INFO ] Kivy v1.7.2
[INFO ] [Logger ] Record log in /Users/bliss/.kivy/logs/kivy_14-02-02_93.txt
[INFO ] [Factory ] 144 symbols loaded
[DEBUG ] [Cache ] register <kv.lang> with limit=None, timeout=Nones
[DEBUG ] [Cache ] register <kv.image> with limit=None, timeout=60s
[DEBUG ] [Cache ] register <kv.atlas> with limit=None, timeout=Nones
[INFO ] [Image ] Providers: img_imageio, img_tex, img_dds, img_pygame, img_gif (img_pil ignored)
[DEBUG ] [Cache ] register <kv.texture> with limit=1000, timeout=60s
[DEBUG ] [Cache ] register <kv.shader> with limit=1000, timeout=3600s
[INFO ] [Text ] Provider: pygame
[DEBUG ] [App ] Loading kv <./tutorial.kv>
[DEBUG ] [App ] kv <./tutorial.kv> not found
[DEBUG ] [Window ] Ignored <egl_rpi> (import error)
[INFO ] [Window ] Provider: pygame(['window_egl_rpi'] ignored)
Fatal Python error: (pygame parachute) Segmentation Fault
Abort trap: 6
I am using a MAC so according to the forums, the driver update comes with the OS update.
As far as I can tell my MAC OS X is updated since I've pressed software update a few times and it does not prompt me to update, but it just shows me the history of updates.
Should I reinstall kivy????
How do I solve this?
That error typically means that pygame is not installed correctly.
--
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
$ kivy
Python 2.7.5 (default, Aug 25 2013, 00:04:04)
[GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import pygame
>>> pygame.__file__
'/Applications/Kivy.app/Contents/Resources/lib/sitepackages/pygame/__init__.pyc'
>>> exit()
$ kivy
Python 2.7.5 (default, Aug 25 2013, 00:04:04)
[GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import pygame
>>> pygame.init()
(6, 0)
>>> pygame.display.set_mode((640,480), pygame.OPENGL)
Fatal Python error: (pygame parachute) Segmentation Fault
Abort trap: 6
--You received this message because you are subscribed to a topic in the Google Groups "Kivy users support" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/kivy-users/QdSkaIcP9d0/unsubscribe.
To unsubscribe from this group and all its topics, send an email to kivy-users+...@googlegroups.com.
>>> help('modules')
pygame is not listed.
But when I do the sudo find / -name "*pygame*"
pygame is in the python 2.7 site packages.
Does this mean anything?
I thought what's in site packages are the modules and therefore it should show on the list when called by help('modules')
Am I missing something here?
What's the best way to uninstall pygame?
Just plainly delete the folders one by one?
['/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python', '/Library/Python/2.7/site-packages']
and pygame is not in any of the directories....
$ cd /usr/local/bin/kivy
-bash: cd: /usr/local/bin/kivy: Not a directory
So the installation is not right.
I started with Kivy 1.7
That's when I programmed the whole thing.
That time it was working.
Then I tried to package it for android...I was having difficulties...
Somewhere around that time I decided to install Kivy 1.8.
So I downloaded the .dmg file.
Dragged the Kivy package to the applications folder.
Then I clicked on the script. It says symlink is already done...
So I don't know why /usr/loca/bin/kivy does not exist....
anyway...
now that we know that doesn't exist...
how should I proceed to fix this???
Thank you....