From neacsa_bogdan_valentin at yahoo.com Thu Sep 1 17:30:53 2011 From: neacsa_bogdan_valentin at yahoo.com (Neacsa Bogdan Valentin) Date: Thu, 1 Sep 2011 08:30:53 -0700 (PDT) Subject: [Pythonmac-SIG] py2app with genshi problem Message-ID: <1314891053.40572.YahooMailNeo@web110611.mail.gq1.yahoo.com> ? ? So I've ran intro a problem that I can't really find any discussion about, I guess it's kind of a narrow chance anyone ran into anything similar but I have no ideea how to TRY and fix it so I'll give it a try. ? ? So for start my project runs fine when started normally. I'm trying to convert it to an app using py2app. The app seems to be generated fine, but when I start the application, I get: ? ?buffet.TemplateEngineMissing: Please install a plugin for "genshi" to use its functionality Now the actual point in my code where this seems to be raised is at: ?cherrypy.tools.buffet_genshi = BuffetTool('genshi', 'tvb.interfaces.web.templates.genshi') here, 'tvb'.interface.web.templates.genshi' is a 'python package' in the sense that there is an?__init__.py there and the only thing in that folder are the html templates for our project. If anyone has at least a hind on what might be causing this please share. Regards, Bogdan -------------- next part -------------- An HTML attachment was scrubbed... URL: From aaron.hildebrandt at gmail.com Thu Sep 1 19:59:21 2011 From: aaron.hildebrandt at gmail.com (Aaron Scott Hildebrandt) Date: Thu, 1 Sep 2011 10:59:21 -0700 Subject: [Pythonmac-SIG] Error building an OSX PySide app with py2app Message-ID: I'm trying to deploy a Python app on OSX that was built with PySide. py2app packages it without issue, copying and linking a lot of PySide and Qt files in the process. But then, when I try to run the built app, I get this error: Traceback (most recent call last): File "/Users/sequence/Desktop/code/dailies/dist/dailies_v02.app/Contents/Resources/__boot__.py", line 31, in _run('dailies_v02.py') File "/Users/sequence/Desktop/code/dailies/dist/dailies_v02.app/Contents/Resources/__boot__.py", line 28, in _run execfile(path, globals(), globals()) File "/Users/sequence/Desktop/code/dailies/dist/dailies_v02.app/Contents/Resources/dailies_v02.py", line 9, in from PySide.QtCore import * File "PySide/__init__.pyc", line 2, in File "PySide/private.pyc", line 2, in File "PySide/QtCore.pyc", line 18, in File "PySide/QtCore.pyc", line 15, in __load ImportError: '/usr/lib/python2.6/lib-dynload/PySide/QtCore.so' not found The weird thing is, QtCore.so IS included in the application bundle: py2app copied it to dailies_v02.app/Contents/Resources/lib/python2.6/lib-dynload/PySide/. Does anyone know why this isn't working? Aaron -- Aaron Scott Hildebrandt andcuriouser.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From db3l.net at gmail.com Sun Sep 4 23:17:00 2011 From: db3l.net at gmail.com (David Bolen) Date: Sun, 04 Sep 2011 17:17:00 -0400 Subject: [Pythonmac-SIG] py2app with genshi problem References: <1314891053.40572.YahooMailNeo@web110611.mail.gq1.yahoo.com> Message-ID: Neacsa Bogdan Valentin writes: > ?cherrypy.tools.buffet_genshi = BuffetTool('genshi', 'tvb.interfaces.web.templates.genshi') > here, 'tvb'.interface.web.templates.genshi' is a 'python package' in the sense that there is an?__init__.py there and the only thing in that folder are the html templates for our project. > If anyone has at least a hind on what might be causing this please share. While I haven't used that package, and have used genshi directly with py2app without much special handling, given the way you reference the package it seems likely that it is imported dynamically (via code), and thus there may not be an explicit import for py2app to track. Is the tvb.interfaces.web.templates.genshi package actually getting included in the packaged application? If not, that's your root issue and you need to let py2app know that it needs to include it. This is, by the way, a general approach to these sorts of "error only shows up when packaged" issues. The most likely cause is that the use of some piece of your application - most often something dynamically referenced - wasn't included able to be automatically detected. Assuming that's the case here, you could try adding it explicitly via the 'packages' options setup() parameter in your setup module to force its inclusion, e.g.: setup( ... options = {'packages': 'tvb.interfaces.web.templates.genshi'} ... ) (If you already have options, just augment with that) Since your package is templates, I'm not absolutely sure if all the relevant files will get pulled in this way (I can't remember if it pulls in the entire package directory contents or not), but it's the simplest to try first. If it skips non-python template files, then you may need to work out a different method (such as perhaps the data_files parameter to setup()) to force the inclusion of your templates. If you have a mixture of dynamic package references and in-package data files in those packages, getting it all to end up in the right spot in the packaged version can sometimes be a challenge. You may find separating out the pure data files into their own tree to be easier. -- David From aahz at pythoncraft.com Sun Sep 11 01:48:37 2011 From: aahz at pythoncraft.com (Aahz) Date: Sat, 10 Sep 2011 16:48:37 -0700 Subject: [Pythonmac-SIG] Error building an OSX PySide app with py2app In-Reply-To: References: Message-ID: <20110910234837.GA29611@panix.com> On Thu, Sep 01, 2011, Aaron Scott Hildebrandt wrote: > > I'm trying to deploy a Python app on OSX that was built with PySide. py2app > packages it without issue, copying and linking a lot of PySide and Qt files > in the process. But then, when I try to run the built app, I get this error: > > File "PySide/QtCore.pyc", line 15, in __load > ImportError: '/usr/lib/python2.6/lib-dynload/PySide/QtCore.so' not found > > The weird thing is, QtCore.so IS included in the application bundle: py2app > copied it to > dailies_v02.app/Contents/Resources/lib/python2.6/lib-dynload/PySide/. Responding late, notice the oddball path. Somehow your lib-dynload/ isn't getting looked at. You might try running the app from the command line (using the packaged Python). -- Aahz (aahz at pythoncraft.com) <*> http://www.pythoncraft.com/ "If you don't know what your program is supposed to do, you'd better not start writing it." --Dijkstra From aragost at gmail.com Sun Sep 11 16:52:23 2011 From: aragost at gmail.com (Agos) Date: Sun, 11 Sep 2011 16:52:23 +0200 Subject: [Pythonmac-SIG] py2app issue with wx In-Reply-To: <9D1116A5-8194-479B-946F-43BFC8EFEC8E@gmail.com> References: <9D1116A5-8194-479B-946F-43BFC8EFEC8E@gmail.com> Message-ID: A quick update on my problem (reported here in awful bottom-quoting). Switching to a 32-bit only python build from python.org and 32-bit binary builds from numpy, scipy, wx and matplotlib did the trick :) Il giorno 22/lug/2011, alle ore 01:11, Agos ha scritto: > Hi everybody! I hope somebody can help me :) > I have this setup: > > Enthought Python Distribution 7.0-1 32 bit > Which includes Python 2.7.1 > Running on Mac OS X 10.6.8 > My application, which uses > - wx > - matplotlib > - numpy > - scipy > > What I'm trying to do is to package it as a .app with py2app. The app gets packaged ok, runs fine on my Mac, but does not run on any other Mac (educated guess: it does not run on any Mac without the Enthought Python Distribution). > > Here is my setup.py: > https://gist.github.com/1098405 > > Here is the ouput of the build command: > http://dl.dropbox.com/u/365171/py2appbuildoutput.zip [warning, >1MB when uncompressed, do not open with Textmate ;)] > > The output of the build command looks pretty uneventful BUT the last line reports: > error: can't copy '/Library/Frameworks/Python.framework/Versions/7.0/lib/python7.0/config/Makefile': doesn't exist or not a regular file > which I don't know if is to be expected. Is it? > > Upon launch (on any Mac I've met beyond mine), this is the error I get: > https://gist.github.com/1098413 > > Looking around I've found some cases of very similar errors: > http://old.nabble.com/Problems-getting-started-with-py2app-and-wxPython-td25686278.html > https://groups.google.com/forum/#!topic/wxpython-users/ehI8ecZqDDI > https://groups.google.com/forum/#!topic/wxpython-users/sdIaPG_K4s0 > http://www.google.it/search?sourceid=chrome&ie=UTF-8&q=py2app+%22_core_.so%22 > > The proposed solutions I've found are: > 1) update py2app. I'm using py2app-0.6.3-py2.7.egg and altgraph-0.9-py2.7.egg (from homebrew) which are to my knowledge the latest versions currently available. > 2) do not use the ?stock? python, but rather download it from python.org. I can't use the python.org one, but I think the EPD python is sufficiently non-stock. > > Any idea? > > I'm afraid I can't provide a minimal example to reproduce the problem. I'll try to build one this weekend. Until then, the code is here: https://github.com/Agos/BeatingModeSW (the only things missing are the aforementioned setup.py, the app icon and the good old ez_setup.py). > A binary showing the problem is here: http://dl.dropbox.com/u/365171/bmgui.zip [warning: 40 meg download]. > > Any help is very appreciated. > > Regards, > > A. > > P.S. I tried just now to add 'includes': ['wx'], but there was no difference. -------------- next part -------------- An HTML attachment was scrubbed... URL: From neacsa_bogdan_valentin at yahoo.com Fri Sep 16 08:51:02 2011 From: neacsa_bogdan_valentin at yahoo.com (Neacsa Bogdan Valentin) Date: Thu, 15 Sep 2011 23:51:02 -0700 (PDT) Subject: [Pythonmac-SIG] py2app zlib error Message-ID: <1316155862.4863.YahooMailNeo@web110604.mail.gq1.yahoo.com> Hello, So I've created an app using py2app. It has a rather large number of dependencies but I've managed to make it work on my PC (Mac OS X 10.5.8). However now I'm testing it on a different machine (still a Mac OS 10.5.8) and it won't work. It crashes right from the start with a :? zipimport.ZipImportError: can't decompress data; zlib not available I've checked and zlib.so is in lib-dynload. What could cause this? Regards, Bogdan -------------- next part -------------- An HTML attachment was scrubbed... URL: From aahz at pythoncraft.com Sat Sep 17 16:52:05 2011 From: aahz at pythoncraft.com (Aahz) Date: Sat, 17 Sep 2011 07:52:05 -0700 Subject: [Pythonmac-SIG] py2app zlib error In-Reply-To: <1316155862.4863.YahooMailNeo@web110604.mail.gq1.yahoo.com> References: <1316155862.4863.YahooMailNeo@web110604.mail.gq1.yahoo.com> Message-ID: <20110917145204.GA12496@panix.com> On Thu, Sep 15, 2011, Neacsa Bogdan Valentin wrote: > > So I've created an app using py2app. It has a rather large number > of dependencies but I've managed to make it work on my PC (Mac OS X > 10.5.8). However now I'm testing it on a different machine (still a > Mac OS 10.5.8) and it won't work. > > It crashes right from the start with a :? > > zipimport.ZipImportError: can't decompress data; zlib not available > > I've checked and zlib.so is in lib-dynload. What could cause this? The exact cause varies, but the immediate problem is that py2app can't correctly set the Python path. You'll need to do some digging in the bootstrap loader. -- Aahz (aahz at pythoncraft.com) <*> http://www.pythoncraft.com/ "If you don't know what your program is supposed to do, you'd better not start writing it." --Dijkstra From tifereth at gmail.com Sat Sep 17 05:37:43 2011 From: tifereth at gmail.com (Hyeonseung I) Date: Sat, 17 Sep 2011 12:37:43 +0900 Subject: [Pythonmac-SIG] py2app wx.lib.pubsub.Publisher problem Message-ID: <3BCEF4F9-3B7F-4886-AD1C-C9F1A176748C@gmail.com> Hi, I`m trying to make an app bundle via py2app from a project using wxPython and it`s pub feature. But there is a problem whenever running the app. In my code, Publisher is imported as: from wx.lib.pubsub import Publisher as pub and use: pub.subscribe(self.OnImageUpdated, 'image.updated') But when I run the app, error message is in a console: ImportError: cannot import name Publisher I`ve tested many time with various method. Python 2.7.2 (v2.7.2:8527427914a2, Jun 11 2011, 14:13:39) [GCC 4.0.1 (Apple Inc. build 5493)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import wx >>> wx.version() '2.8.12.0 (mac-unicode)' >>> import wx.lib.pubsub as ppp >>> ppp >>> ppp.Publisher >>> Publisher is an instance of wx.lib.pubsub.pub.PublisherClass In other word, Publisher is NOT a module. But in the app bundle, python try to regard 'Publisher' as module. WHY? So, I tried to change my code: import wx.lib.pubsub as ppp pub = ppp.Publisher ...... pub.subscribe(self.OnImageUpdated, 'image.updated') ..... In this case, error massage is like this: AttributeError: 'module' object has no attribute 'Publisher' What`s the problem? From Chris.Barker at noaa.gov Sun Sep 18 02:45:02 2011 From: Chris.Barker at noaa.gov (Chris Barker) Date: Sat, 17 Sep 2011 17:45:02 -0700 Subject: [Pythonmac-SIG] py2app wx.lib.pubsub.Publisher problem In-Reply-To: <3BCEF4F9-3B7F-4886-AD1C-C9F1A176748C@gmail.com> References: <3BCEF4F9-3B7F-4886-AD1C-C9F1A176748C@gmail.com> Message-ID: <4E753F0E.5080401@noaa.gov> On 9/16/11 8:37 PM, Hyeonseung I wrote: > I`m trying to make an app bundle via py2app from a project using wxPython and it`s pub feature. > But there is a problem whenever running the app. > > In my code, Publisher is imported as: > from wx.lib.pubsub import Publisher as pub ... > But when I run the app, error message is in a console: > ImportError: cannot import name Publisher > Publisher is an instance of wx.lib.pubsub.pub.PublisherClass > In other word, Publisher is NOT a module. > But in the app bundle, python try to regard 'Publisher' as module. WHY? pubsub does some odd things in this regard. There was a recent thread on the wxPython mailing list about this issue -- I think the pubsub author came up with a patch. In that case it was y2exe, but It's likely to be the same issue You can also try the pubsub list. -Chris > So, I tried to change my code: > import wx.lib.pubsub as ppp > pub = ppp.Publisher > ...... > pub.subscribe(self.OnImageUpdated, 'image.updated') > ..... > > In this case, error massage is like this: > AttributeError: 'module' object has no attribute 'Publisher' > > What`s the problem? > > _______________________________________________ > Pythonmac-SIG maillist - Pythonmac-SIG at python.org > http://mail.python.org/mailman/listinfo/pythonmac-sig > unsubscribe: http://mail.python.org/mailman/options/Pythonmac-SIG -- Christopher Barker, Ph.D. Oceanographer Emergency Response Division NOAA/NOS/OR&R (206) 526-6959 voice 7600 Sand Point Way NE (206) 526-6329 fax Seattle, WA 98115 (206) 526-6317 main reception Chris.Barker at noaa.gov From tifereth at gmail.com Mon Sep 19 03:49:57 2011 From: tifereth at gmail.com (Hyeonseung I) Date: Mon, 19 Sep 2011 10:49:57 +0900 Subject: [Pythonmac-SIG] py2app wx.lib.pubsub.Publisher problem Message-ID: Thanks Werner, thanks Chris, After many trials, it works. 1. add 'packages' to options in setup.py setup( app=APP, data_files=DATA_FILES, options={'py2app': {'argv_emulation': True, 'packages':['wx.lib.pubsub']}}, setup_requires=['py2app'], ) 2. due to 'packages', wx.lib.pubsub is not able to be imported from code (not found module error), so change import lines to : from pubsub import setuparg1 from pubsub import pub 3. insert a line: publisher = pub.Publisher() 4. use it publisher.subscribe(self.OnImageUpdated, 'image.updated') 2011. 9. 18., ?? 2:32, Werner F. Bruhin ??: > On 09/17/2011 05:37 AM, Hyeonseung I wrote: >> >> Hi, >> >> I`m trying to make an app bundle via py2app from a project using wxPython and it`s pub feature. >> But there is a problem whenever running the app. >> >> In my code, Publisher is imported as: >> from wx.lib.pubsub import Publisher as pub > Did you see the exchange some time ago on wxPython list? > > Here a few of the threads Olivier pointed to in one of the messages: > begin quote: > http://groups.google.com/group/wxpython-users/browse_thread/thread/d448a42abdae3e69/318cc65f2b54348f?#318cc65f2b54348f > http://groups.google.com/group/wxpython-users/browse_thread/thread/786c36eec08bd321/5a35b68addbbd739?lnk=gst&q=listenerimpl# > http://groups.google.com/group/pypubsub/browse_thread/thread/98e038447af8dc0b/d59f038f0bfc1460?hl=en&q=pubsub+py2exe#d59f038f0bfc1460 (though this is only if you are using the standalone version of pubsub, which you download from http://www.sf.net/projects/pubsub). > > If this still doesn't work, try taking one of the py2exe examples for wxpython and adding the import pubsub in it and redo the py2exe. I recommend you try using the from pubsub import setupkwargs and see what happens with that. > end quote: > > Werner > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From kw at codebykevin.com Thu Sep 22 03:59:01 2011 From: kw at codebykevin.com (Kevin Walzer) Date: Wed, 21 Sep 2011 21:59:01 -0400 Subject: [Pythonmac-SIG] "App" error--visit the MacPython website Message-ID: <4E7A9665.7070207@codebykevin.com> I had a user report an error in one of my apps on startup, and he was presented with a dialog box that said " Error: Visit the MacPython website." I've seen this dialog msyelf (generated by py2app), and it takes us to Jack Jansen's old MacPython site. Shouldn't this dialog point somewhere else? If so, where? -- Kevin Walzer Code by Kevin http://www.codebykevin.com From ronaldoussoren at mac.com Thu Sep 22 16:52:44 2011 From: ronaldoussoren at mac.com (Ronald Oussoren) Date: Thu, 22 Sep 2011 16:52:44 +0200 Subject: [Pythonmac-SIG] "App" error--visit the MacPython website In-Reply-To: <4E7A9665.7070207@codebykevin.com> References: <4E7A9665.7070207@codebykevin.com> Message-ID: <73B21DAE-FA6B-4624-90CC-FF6287DBF32E@mac.com> On 22 Sep, 2011, at 3:59, Kevin Walzer wrote: > I had a user report an error in one of my apps on startup, and he was presented with a dialog box that said " Error: Visit the MacPython website." I've seen this dialog msyelf (generated by py2app), and it takes us to Jack Jansen's old MacPython site. Shouldn't this dialog point somewhere else? If so, where? This should not be an issue with recent versions of py2app, those don't add a link to the MacPython site. The dialog IMNO shouldn't point to a website, but py2app should have an option to let you specify an alternate text and/or link. Ronald -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 2224 bytes Desc: not available URL: From ronaldoussoren at mac.com Thu Sep 22 16:46:00 2011 From: ronaldoussoren at mac.com (Ronald Oussoren) Date: Thu, 22 Sep 2011 16:46:00 +0200 Subject: [Pythonmac-SIG] py2app zlib error In-Reply-To: <1316155862.4863.YahooMailNeo@web110604.mail.gq1.yahoo.com> References: <1316155862.4863.YahooMailNeo@web110604.mail.gq1.yahoo.com> Message-ID: On 16 Sep, 2011, at 8:51, Neacsa Bogdan Valentin wrote: > Hello, > > So I've created an app using py2app. It has a rather large number of dependencies but I've managed to make it work on my PC (Mac OS X 10.5.8). However now I'm testing it on a different machine (still a Mac OS 10.5.8) and it won't work. > > It crashes right from the start with a : > > zipimport.ZipImportError: can't decompress data; zlib not available > > I've checked and zlib.so is in lib-dynload. What could cause this? What version of python and py2app do you use? To debug you can add a print statement to yourapp.app/Contents/Resources/__boot__.py. In particular, add these two lines to the top of that file: import sys print sys.path If all is well the correct lib-dynload should be on sys.path before the zipfile containing the rest of the application. One thing you could also try: edit py2app/build_app.py and look for 'compressed = True', change that to 'compressed = False'. This ensures that the zipfile with the application files won't be compressed. That's not guaranteed to give a useful result though, there may be other problems with the application bundle. Ronald > > Regards, > Bogdan > _______________________________________________ > Pythonmac-SIG maillist - Pythonmac-SIG at python.org > http://mail.python.org/mailman/listinfo/pythonmac-sig > unsubscribe: http://mail.python.org/mailman/options/Pythonmac-SIG -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 2224 bytes Desc: not available URL: From sean.robinson at sccmail.maricopa.edu Fri Sep 30 21:40:30 2011 From: sean.robinson at sccmail.maricopa.edu (Sean Robinson) Date: Fri, 30 Sep 2011 12:40:30 -0700 Subject: [Pythonmac-SIG] py2app pre-release 0.6.4 Message-ID: <4E861B2E.4070305@sccmail.maricopa.edu> After not having success with py2app 0.6.3, I cloned what is internally tagged as 0.6.4. This new version-in-waiting did solve one problem over 0.6.3: argv-emulation works on 64-bit now. Thank you. This will make my development plans much easier. -- Sean Robinson Laboratory Technician Physics Astronomy Geology sean.robinson at sccmail.maricopa.edu From sean.robinson at sccmail.maricopa.edu Fri Sep 30 21:36:26 2011 From: sean.robinson at sccmail.maricopa.edu (Sean Robinson) Date: Fri, 30 Sep 2011 12:36:26 -0700 Subject: [Pythonmac-SIG] py2app: ImportError Message-ID: <4E861A3A.5090203@sccmail.maricopa.edu> I have not yet been able to make a working stand-alone app bundle using py2app and I hope someone can point out what I'm missing. I am using py2app cloned from bitbucket (changeset 169:9d95dbc52431), but py2app 0.6.3 did not work, either. This is being done on OSX 10.6.8 with the Apple-provided python (v2.6.1). The app (quotidian) is a Tkinter python script that runs well from Terminal and partially from a py2app --alias app bundle. But the primary problem is that sub-modules with the project are not importing (see the stderr log below) on launch. The supposedly missing module is in site-packages.zip (as queue.pyc). I have verified that site-packages.zip is in sys.path. Does anyone have something else I can check? Log from 'python setup.py py2app': running py2app creating /Users/robinson_s/Desktop/quotidian/build creating /Users/robinson_s/Desktop/quotidian/build/bdist.macosx-10.6-universal creating /Users/robinson_s/Desktop/quotidian/build/bdist.macosx-10.6-universal/python2.6-semi_standalone creating /Users/robinson_s/Desktop/quotidian/build/bdist.macosx-10.6-universal/python2.6-semi_standalone/app creating /Users/robinson_s/Desktop/quotidian/build/bdist.macosx-10.6-universal/python2.6-semi_standalone/app/collect creating /Users/robinson_s/Desktop/quotidian/build/bdist.macosx-10.6-universal/python2.6-semi_standalone/app/temp creating /Users/robinson_s/Desktop/quotidian/dist creating build/bdist.macosx-10.6-universal/python2.6-semi_standalone/app/lib-dynload creating build/bdist.macosx-10.6-universal/python2.6-semi_standalone/app/Frameworks *** using recipe: virtualenv *** *** filtering dependencies *** 389 total 378 filtered 0 orphaned 11 remaining *** create binaries *** *** byte compile python files *** byte-compiling /Users/robinson_s/.local/lib/python2.6/site-packages/py2app-0.6.4-py2.6.egg/py2app/bootstrap/argv_emulation.py to argv_emulation.pyc byte-compiling /Users/robinson_s/.local/lib/python2.6/site-packages/py2app-0.6.4-py2.6.egg/py2app/bootstrap/boot_app.py to boot_app.pyc byte-compiling /Users/robinson_s/.local/lib/python2.6/site-packages/py2app-0.6.4-py2.6.egg/py2app/bootstrap/chdir_resource.py to chdir_resource.pyc byte-compiling /Users/robinson_s/.local/lib/python2.6/site-packages/py2app-0.6.4-py2.6.egg/py2app/bootstrap/disable_linecache.py to disable_linecache.pyc byte-compiling /Users/robinson_s/Desktop/quotidian/quotidian.py to quotidian.pyc byte-compiling /Users/robinson_s/Desktop/quotidian/quotidian/__init__.py to quotidian/__init__.pyc creating /Users/robinson_s/Desktop/quotidian/build/bdist.macosx-10.6-universal/python2.6-semi_standalone/app/collect/quotidian byte-compiling /Users/robinson_s/Desktop/quotidian/quotidian/gui/__init__.py to quotidian/gui/__init__.pyc creating /Users/robinson_s/Desktop/quotidian/build/bdist.macosx-10.6-universal/python2.6-semi_standalone/app/collect/quotidian/gui byte-compiling /Users/robinson_s/Desktop/quotidian/quotidian/queue.py to quotidian/queue.pyc byte-compiling /Users/robinson_s/Desktop/quotidian/quotidian/sound/__init__.py to quotidian/sound/__init__.pyc creating /Users/robinson_s/Desktop/quotidian/build/bdist.macosx-10.6-universal/python2.6-semi_standalone/app/collect/quotidian/sound byte-compiling /Users/robinson_s/Desktop/quotidian/quotidian/sound/linux.py to quotidian/sound/linux.pyc byte-compiling /Users/robinson_s/Desktop/quotidian/quotidian/sound/macosx.py to quotidian/sound/macosx.pyc creating /Users/robinson_s/Desktop/quotidian/build/bdist.macosx-10.6-universal/python2.6-semi_standalone/app/collect/quotidian/tests copying /Users/robinson_s/Desktop/quotidian/quotidian/tests/.directory -> /Users/robinson_s/Desktop/quotidian/build/bdist.macosx-10.6-universal/python2.6-semi_standalone/app/collect/quotidian/tests *** creating application bundle: quotidian *** copying quotidian.py -> /Users/robinson_s/Desktop/quotidian/dist/quotidian.app/Contents/Resources creating /Users/robinson_s/Desktop/quotidian/dist/quotidian.app/Contents/Resources/lib creating /Users/robinson_s/Desktop/quotidian/dist/quotidian.app/Contents/Resources/lib/python2.6 copying build/bdist.macosx-10.6-universal/python2.6-semi_standalone/app/site-packages.zip -> /Users/robinson_s/Desktop/quotidian/dist/quotidian.app/Contents/Resources/lib/python2.6 creating /Users/robinson_s/Desktop/quotidian/dist/quotidian.app/Contents/Resources/lib/python2.6/lib-dynload creating /Users/robinson_s/Desktop/quotidian/dist/quotidian.app/Contents/Frameworks stripping quotidian stripping saved 0 bytes (173512 / 173512) Error: Traceback (most recent call last): File "/Users/robinson_s/Desktop/quotidian/dist/quotidian.app/Contents/Resources/__boot__.py", line 306, in _run('quotidian.py') File "/Users/robinson_s/Desktop/quotidian/dist/quotidian.app/Contents/Resources/__boot__.py", line 303, in _run execfile(path, globals(), globals()) File "/Users/robinson_s/Desktop/quotidian/dist/quotidian.app/Contents/Resources/quotidian.py", line 9, in import quotidian File "/Users/robinson_s/Desktop/quotidian/dist/quotidian.app/Contents/Resources/quotidian.py", line 10, in import quotidian.queue ImportError: No module named queue -- Sean Robinson Laboratory Technician Physics Astronomy Geology sean.robinson at sccmail.maricopa.edu