I'm using a mac with OS 10.7.2 and Apple's default python 2.7.1 installed. I installed opencv 2.3.1 via source and can confirm that import cv works from within python. I created a minimal python script (saved as "cvTest.py") that simply has import cv at the top and nothing else, then I used py2app (via terminal commands py2applet --make-setup cvTest.py; python setup.py py2app). When I move the resulting standalone app to a different computer (mac, OS 10.7.2) that doesn't have opencv installed and try to run the app it crashes, with the following error available via console.app:

11-11-10 1:17:38.591 PM [0x0-0xcb9cb9].org.pythonmac.unspecified.cvTest: Traceback (most recent call last):
11-11-10 1:17:38.591 PM [0x0-0xcb9cb9].org.pythonmac.unspecified.cvTest:   File "/Users/ra/Downloads/cvTest.app/Contents/Resources/__boot__.py", line 103, in <module>
11-11-10 1:17:38.591 PM [0x0-0xcb9cb9].org.pythonmac.unspecified.cvTest:     _argv_emulation()
11-11-10 1:17:38.591 PM [0x0-0xcb9cb9].org.pythonmac.unspecified.cvTest:   File "/Users/ra/Downloads/cvTest.app/Contents/Resources/__boot__.py", line 101, in _argv_emulation
11-11-10 1:17:38.591 PM [0x0-0xcb9cb9].org.pythonmac.unspecified.cvTest:     _get_argvemulator().mainloop()
11-11-10 1:17:38.591 PM [0x0-0xcb9cb9].org.pythonmac.unspecified.cvTest:   File "/Users/ra/Downloads/cvTest.app/Contents/Resources/__boot__.py", line 40, in mainloop
11-11-10 1:17:38.591 PM [0x0-0xcb9cb9].org.pythonmac.unspecified.cvTest:     stoptime = Evt.TickCount() + timeout
11-11-10 1:17:38.591 PM [0x0-0xcb9cb9].org.pythonmac.unspecified.cvTest: AttributeError: 'module' object has no attribute 'TickCount'
11-11-10 1:17:38.661 PM cvTest: cvTest Error
11-11-10 1:17:39.888 PM com.apple.launchd.peruser.502: ([0x0-0xcb9cb9].org.pythonmac.unspecified.cvTest[49524]) Exited with code: 255

I then created a simple bash script that let me dig into the standalone app and run the app's binary from the terminal:

#!/bin/bash
CMD=$0
PROGDIR=$(echo $CMD|perl -pe 's|/[^/]*$||')
cd "$PROGDIR"
"./cvTest.app/Contents/MacOS/cvTest"

Executing this yields the following errors:

Traceback (most recent call last):
  File "/Users/ra/Downloads/cvTest.app/Contents/Resources/__boot__.py", line 137, in <module>
    _run('cvTest.py')
  File "/Users/ra/Downloads/cvTest.app/Contents/Resources/__boot__.py", line 134, in _run
    execfile(path, globals(), globals())
  File "/Users/ra/Downloads/cvTest.app/Contents/Resources/cvTest.py", line 1, in <module>
    import cv
  File "cv.pyc", line 1, in <module>
ImportError: No module named cv2.cv
2011-11-10 13:18:26.239 cvTest[49578:707] cvTest Error

[Process completed]

So, what's going on here? Why am I getting an error, and is there any way to bundle opencv with a py2app-created app so that import cv works?

link|improve this question

64% accept rate
feedback

1 Answer

To be honest I'm not sure. But I'm working on an open source project that is computer vision based (It wrappers OpenCV) amongst others (http://www.simplecv.org). One problem we are having is with deployment across platforms as we want 1-click installers.

We tried using Innosetup on windows and running into a lot of issues. I got fed up so I started to write my own. Basically what this program does is a bootstrap program. You download our exe, run it, then it pulls in a list of files/libraries it needs and starts installing them. So in our case we can install our software on a machine that has zero libraries installed. The first thing it does it intall python, then setuptools, then opencv, etc.

Basically the app I'm releasing as open source is going to try and be a replacement for innosetup but cross platform. If you want to see it as it stands now (about 85%) complete you can check it out at: https://github.com/ingenuitas/SimpleCV/blob/installer/install/simplecv-installer.py

I plan to fork off this project when I'm done so it can be a universal installer that you just provide a manifest file to. Here is the existing manifest: https://github.com/ingenuitas/SimpleCV/blob/installer/install/manifest.json

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.