I am currently trying to convert a program I just wrote to application form, on the Mac. I'm using py2app to accomplish this, and everything works fine up until the last stage; when I try to complete the conversion with:
and then run the resulting executable, I get the error: - ImportError: No module named MySQLdb
The really strange thing is that when I was testing the application creation by making an app bundle, using - python setup.py py2app -A
the resulting application bundle worked perfectly. So something is going wrong between making the app bundle and creating the actual app itself. The entire purpose of my program is database connection, so commenting out that portion of its capabilities is not an option.
Thanks ahead of time,
Adam
3 3357
I've had similar problems when building executables for Windows and Linux machines. Within your setup.py script you'll need to package up the MySQL module so that it gets distributed along with the rest of your source code.
Try googling py2app with the MySQL module to see if results come up, as different packages require different steps to get them to play nice with py2exe (in my case). Here's an example of my setup.py script for making matplotlib distributable: -
#!/usr/bin/python
-
-
import sys
-
-
try:
-
# if this doesn't work, try import modulefinder
-
import py2exe.mf as modulefinder
-
import win32com
-
for p in win32com.__path__[1:]:
-
modulefinder.AddPackagePath("win32com", p)
-
for extra in ["win32com.shell"]: #,"win32com.mapi"
-
__import__(extra)
-
m = sys.modules[extra]
-
for p in m.__path__[1:]:
-
modulefinder.AddPackagePath(extra, p)
-
except ImportError:
-
# no build path setup, no worries.
-
pass
-
-
from distutils.core import setup
-
from distutils.filelist import findall
-
import matplotlib
-
import py2exe
-
import os
-
-
manifest = """[redacted for length]"""
-
-
mpdatadir = matplotlib.get_data_path()
-
mpdata = findall(mpdatadir)
-
dataFiles = []
-
for f in mpdata:
-
dir = os.path.join('matplotlibdata', f[len(mpdatadir)+1:])
-
dataFiles.append((os.path.split(dir)[0], [f]))
-
-
setup(
-
zipfile = None,
-
# We use os.path.join for portability
-
package_dir = {'': os.path.join('..', 'Common')},
-
py_modules = [ """[redacted, my own modules]""" ],
-
options={
-
'py2exe': {
-
'packages' : ['matplotlib.numerix', 'pytz',
-
'matplotlib.backends.backend_tkagg'],
-
'includes': 'matplotlib.numerix.random_array',
-
'excludes': ['_gtkagg', '_tkagg'],
-
'dll_excludes':['libgdk-win32-2.0-0.dll',
-
'libgobject-2.0-0.dll',
-
'MSVCP80.dll',
-
'MSVCR80.dll']
-
}
-
},
-
data_files = dataFiles,
-
windows = [
-
{
-
"script": "[redacted]",
-
"icon_resources": [(1, "iconJ.ico")],
-
"other_resources": [(24,1,manifest)]
-
}
-
],
-
)
-
I had to do this different ways for different modules.
Some simply needed to be imported into the setup.py script.
Some needed to use the modulefinder in the beginning (but only matplotlib that I found)
Others simply needed to be included in the packages or includes lists that are part of the py2exe dictionary. I would try doing the import method first, then the packages/includes list entries. But of course that's if a quick google doesn't turn anything up!
As a last resort there may be some similar modulefinder (py2exe.mf) within py2app that you could try out
oy, ok thanks. I just discovered some major bugs in my code, so I'm gonna hold off on converting it for a little while.
I had the same issue and was able to get py2app to correctly build the .app with MySQLdb after manually unzipping the MySQLdb .egg under site-packages.
It seems that the MySQLdb is distributed as a compressed .egg file and that confuses py2app. No special py2app recipe needed.
To manually uncompress the .egg file, under site-packages/ instead of
* MySQL_python-1.2.2-py2.5-macosx-10.3-fat.egg (as a binary .zip file)
make a MySQL_python-1.2.2-py2.5-macosx-10.3-fat.egg directory and uncompress it -
mv MySQL_python-1.2.2-py2.5-macosx-10.3-fat.egg MySQL_python-1.2.2-py2.5-macosx-10.3-fat.zip
-
mkdir MySQL_python-1.2.2-py2.5-macosx-10.3-fat.egg
-
mv MySQL_python-1.2.2-py2.5-macosx-10.3-fat.zip MySQL_python-1.2.2-py2.5-macosx-10.3-fat.egg
-
cd MySQL_python-1.2.2-py2.5-macosx-10.3-fat.egg
-
unzip MySQL_python-1.2.2-py2.5-macosx-10.3-fat.zip
Re-run the py2app and it should pick up the MySQLdb module as expected.
Scot
Sign in to post your reply or Sign up for a free account.
Similar topics
by: Peter Nikolaidis |
last post by:
Greetings,
I am attempting to get MySQLdb 0.9.2 installed on Mac OS 10.2 with a
Fink distribution of Python 2.2.2. I have seen only a few posts on the
subject, some of them relate to...
|
by: Bob Swerdlow |
last post by:
I'm trying to move my application from bundlebuilder to py2app. I upgraded
to PyObjC 1.2, which include py2app 1.7, but I got the following error. I
saw a note on the py2app site that earlier...
|
by: bex |
last post by:
Im baffled about this one...
Im running OS 10.3, and Python 2.3. I installed py2app 0.17 and never
used it, then installed py2app 0.2. It refuses to work. None of the
samples will build....
|
by: bsharitt |
last post by:
I'm trying to get Bittornado to run on Mac OS X (10.4 with Python
2.3.5) but I've only ever dealt with Python at lower lever scripting
stuff, never wxPython or another GUI stuff. py2app is supposed...
|
by: Richard Taylor |
last post by:
User-Agent: OSXnews 2.07
Xref: number1.nntp.dca.giganews.com comp.lang.python:437315
Hi
I am trying to use py2app (http://undefined.org/python/) to package a
gnome-python application...
|
by: SPE - Stani's Python Editor |
last post by:
Hi,
I'm creating a GUI program
with wxPython which will be distributed for Mac and Windows. The
audience of the program is not technical at all (eg they've never
heard about Python yet ;-), so...
|
by: loren.davie |
last post by:
Hi,
I'm attempting to build a small app that uses pythoncard for a gui
layer. The intention is to use py2app to construct an .app bundle for
the Mac. I'm running OS 10.4 on an Intel MacBook...
|
by: James Stroud |
last post by:
Hello All,
I am trying to create a semi-standalone with the vendor python on OS X
10.4 (python 2.3.5). I tried to include some packages with both
--packages from the command and the 'packages'...
|
by: Joe Strout |
last post by:
I'm trying to use py2app to convert the pySketch wxPython example into
a stand-alone OS X app. I've found the documentation at <http://undefined.org/python/py2app.html
like this:
#!/usr/bin/env...
|
by: Kemmylinns12 |
last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and efficiency. While initially associated with cryptocurrencies...
|
by: Naresh1 |
last post by:
What is WebLogic Admin Training?
WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge required to effectively administer and manage Oracle...
|
by: antdb |
last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine
In the overall architecture, a new "hyper-convergence" concept was proposed, which integrated multiple engines and...
|
by: WisdomUfot |
last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific technical details, Gmail likely implements measures...
|
by: Carina712 |
last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand. Background colors can be used to highlight important...
|
by: Ricardo de Mila |
last post by:
Dear people, good afternoon...
I have a form in msAccess with lots of controls and a specific routine must be triggered if the mouse_down event happens in any control.
Than I need to discover what...
|
by: Johno34 |
last post by:
I have this click event on my form. It speaks to a Datasheet Subform
Private Sub Command260_Click()
Dim r As DAO.Recordset
Set r = Form_frmABCD.Form.RecordsetClone
r.MoveFirst
Do
If...
|
by: DizelArs |
last post by:
Hi all)
Faced with a problem, element.click() event doesn't work in Safari browser.
Tried various tricks like emulating touch event through a function:
let clickEvent = new Event('click', {...
|
by: F22F35 |
last post by:
I am a newbie to Access (most programming for that matter). I need help in creating an Access database that keeps the history of each user in a database. For example, a user might have lesson 1 sent...
| |