MouseTrap Status
(Difference between revisions)
Line 49: | Line 49: | ||
mousetrap/app/ui/widgets.py | mousetrap/app/ui/widgets.py | ||
mousetrap/ocvfw/dev/camera.py | mousetrap/ocvfw/dev/camera.py | ||
+ | |||
+ | |-style="font-style: italic; background-color: #FFCCFF;" | ||
+ | |Amber | ||
+ | |12.11.2012 ||New error is present: | ||
+ | /usr/lib/python2.7/site-packages/gobject/constants.py:24: | ||
+ | Warning: g_boxed_type_register_static: assertion `g_type_from_name(name) == 0' failed | ||
+ | import gobject._gobject | ||
+ | Traceback (most recent call last): | ||
+ | File "<string>", line 1, in <module> | ||
+ | File "mousetrap/app/main.py", line 91, in start | ||
+ | idm = pocv.get_idm(self.cfg.get("main", "algorithm")) | ||
+ | File "mousetrap/ocvfw/pocv.py", line 43, in get_idm | ||
+ | ['']) | ||
+ | File "mousetrap/ocvfw/idm/forehead.py", line 32, in <module> | ||
+ | from mousetrap.ocvfw.dev.camera import Capture, Point | ||
+ | File "mousetrap/ocvfw/dev/camera.py", line 34, in <module> | ||
+ | from mousetrap.ocvfw import _ocv as ocv | ||
+ | File "mousetrap/ocvfw/_ocv.py", line 282, in <module> | ||
+ | class OcvfwPython(OcvfwBase): | ||
+ | File "mousetrap/ocvfw/_ocv.py", line 293, in OcvfwPython | ||
+ | ['']) | ||
+ | ImportError: No module named opencv.cv | ||
+ | /usr/lib/python2.7/site-packages/gobject/constants.py:24: | ||
+ | Warning: g_boxed_type_register_static: assertion `g_type_from_name (name) == 0' failed | ||
+ | import gobject._gobject | ||
+ | ^CTraceback (most recent call last): | ||
+ | File "<string>", line 1, in <module> | ||
+ | File "mousetrap/app/main.py", line 91, in start | ||
+ | idm = pocv.get_idm(self.cfg.get("main", "algorithm")) | ||
+ | File "mousetrap/ocvfw/pocv.py", line 43, in get_idm | ||
+ | ['']) | ||
+ | File "mousetrap/ocvfw/idm/forehead.py", line 32, in <module> | ||
+ | from mousetrap.ocvfw.dev.camera import Capture, Point | ||
+ | File "mousetrap/ocvfw/dev/camera.py", line 34, in <module> | ||
+ | from mousetrap.ocvfw import _ocv as ocv | ||
+ | File "mousetrap/ocvfw/_ocv.py", line 282, in <module> | ||
+ | class OcvfwPython(OcvfwBase): | ||
+ | File "mousetrap/ocvfw/_ocv.py", line 293, in OcvfwPython | ||
+ | ['']) | ||
+ | Will attempt to remove instances of broken dependency opencv to the newer cv | ||
|} | |} |
Revision as of 06:13, 11 December 2012
Please state the versions and OS you are currently working with so that versioning errors can be ruled out.
Team Member Name | Installed packages | ||||
---|---|---|---|---|---|
Amber |
|
Please enter the status of the ongoing project below
Name | Date | Entry |
---|---|---|
Amber | 12.10.2012 | Full install of mousetrap complete. Config file was manipulated to include failed dependency on 'python-opencv' which has been updated and the package is now referred to as 'cv'. Other dependencies are outdated or the names have been changed as well (xlib-python, etc). New errors with 'gobject' have been identified. Here is the recorded error when running mousetrap:
ImportError: could not import gobject (error was: ImportError('When using gi.repository you must not import static modules like "gobject". Please change all occurrences of "import gobject" to "from gi.repository import GObject".',)) ^C[amber@localhost src]$ Traceback (most recent call last) File "<string>", line 1, in <module> File "mousetrap/app/main.py", line 50, in <module> from lib import httpd, dbusd, settings File "mousetrap/app/lib/httpd.py", line 31, in <module> import mouse File "mousetrap/app/lib/mouse.py", line 30, in <module> import pyatspi File "/usr/lib/python2.7/site-packages/pyatspi/__init__.py", line 17, in <module> from gi.repository import Atspi File "/usr/lib/python2.7/site-packages/gi/__init__.py", line 23, in <module> from ._gi import _API, Repository Fix: changed import gobject to from gi.repository import GObject like suggested and changed all instances of gobject to GObject Changed these files: mousetrap/app/main.py mousetrap/app/addons/recalc.py mousetrap/app/addons/cpu.py mousetrap/app/ui/widgets.py mousetrap/ocvfw/dev/camera.py |
Amber | 12.11.2012 | New error is present:
/usr/lib/python2.7/site-packages/gobject/constants.py:24: Warning: g_boxed_type_register_static: assertion `g_type_from_name(name) == 0' failed import gobject._gobject Traceback (most recent call last): File "<string>", line 1, in <module> File "mousetrap/app/main.py", line 91, in start idm = pocv.get_idm(self.cfg.get("main", "algorithm")) File "mousetrap/ocvfw/pocv.py", line 43, in get_idm []) File "mousetrap/ocvfw/idm/forehead.py", line 32, in <module> from mousetrap.ocvfw.dev.camera import Capture, Point File "mousetrap/ocvfw/dev/camera.py", line 34, in <module> from mousetrap.ocvfw import _ocv as ocv File "mousetrap/ocvfw/_ocv.py", line 282, in <module> class OcvfwPython(OcvfwBase): File "mousetrap/ocvfw/_ocv.py", line 293, in OcvfwPython []) ImportError: No module named opencv.cv /usr/lib/python2.7/site-packages/gobject/constants.py:24: Warning: g_boxed_type_register_static: assertion `g_type_from_name (name) == 0' failed import gobject._gobject ^CTraceback (most recent call last): File "<string>", line 1, in <module> File "mousetrap/app/main.py", line 91, in start idm = pocv.get_idm(self.cfg.get("main", "algorithm")) File "mousetrap/ocvfw/pocv.py", line 43, in get_idm []) File "mousetrap/ocvfw/idm/forehead.py", line 32, in <module> from mousetrap.ocvfw.dev.camera import Capture, Point File "mousetrap/ocvfw/dev/camera.py", line 34, in <module> from mousetrap.ocvfw import _ocv as ocv File "mousetrap/ocvfw/_ocv.py", line 282, in <module> class OcvfwPython(OcvfwBase): File "mousetrap/ocvfw/_ocv.py", line 293, in OcvfwPython []) Will attempt to remove instances of broken dependency opencv to the newer cv |