Differences between revisions 12 and 17 (spanning 5 versions)
Revision 12 as of 2008-07-08 11:27:43
Size: 4330
Editor: localhost
Comment: converted to 1.6 markup
Revision 17 as of 2009-12-01 15:50:00
Size: 4982
Editor: RobWissmann
Comment:
Deletions are marked like this. Additions are marked like this.
Line 4: Line 4:
Line 6: Line 7:
Line 8: Line 10:
Line 11: Line 14:

== dpkt ==
 * [[dpkt]] Fixing problems initializing class attributes
Line 15: Line 22:
Line 17: Line 25:

== lxml ==
 * if missing _elementhpath, either pull whole lxml library in packages=..., or put "from lxml import _elementhpath as _dummy" somewhere in code; in both cases also pull gzip in packages=...
Line 19: Line 31:

== multiprocessing ==
 * See [[http://docs.python.org/library/multiprocessing.html#multiprocessing.freeze_support|multiprocessing.freeze_support]].
Line 22: Line 38:
Line 24: Line 41:
Line 27: Line 45:
Line 29: Line 48:

== pyodbc ==
 * [[PyODBC]] additional configuration required to include {{{decimal}}} package

== PyOpenGL ==
 * [[PyOpenGL]] A hack to get py2exe and PyOpenGL working
Line 31: Line 57:
Line 33: Line 60:
Line 35: Line 63:
Line 37: Line 66:
Line 39: Line 69:
Line 46: Line 77:
Line 48: Line 80:
Line 50: Line 83:
Line 52: Line 86:
Line 57: Line 92:
Line 59: Line 95:
Line 61: Line 98:

Working with Various Packages and Modules

Biopython

cElementTree

  • If you're using import xml.etree.cElementTree, also use import xml.etree.ElementTree before that to get it working

ConfigObj

ctypes.com

dpkt

  • dpkt Fixing problems initializing class attributes

Innosetup

logging module

  • LoggingModule - Getting the %(filename)s format string working in the python logging module.

lxml

  • if missing _elementhpath, either pull whole lxml library in packages=..., or put "from lxml import _elementhpath as _dummy" somewhere in code; in both cases also pull gzip in packages=...

MatPlotLib

  • MatPlotLib - Fixing and including configuration information for this plotting package.

multiprocessing

NumPy

  • If you're getting No scipy-style subpackage 'xxx' found in c:\...\library.zip\numpy. Ignoring, try --skip-archive command line option or pass options = {"py2exe": {"skip_archive":1}} to setup().

  • If you're using numarray and numpy together, be aware that they both have a _sort, and py2exe gets them confused. After py2exe creates the dist directotry, copy numpy/core/_sort.pyd and numarray/sort.pyd to their respective locations in the dist. [This problem is due to a bug in py2exe: it used a single, flat namespace for all .pyd files. This has been fixed in CVS as of 7 Sep 2007.]

os.popen

  • os.popen If you're getting failures when the CWD is a UNC path like \\host\dirname\...

PIL

  • py2exeAndPIL If you're getting cannot identify image file, read this

  • PILAndFontfiles If you're getting Cannot find font file, read this

PyGTK (and Kiwi)

pyodbc

  • PyODBC additional configuration required to include decimal package

PyOpenGL

  • PyOpenGL A hack to get py2exe and PyOpenGL working

PyQt

  • Py2exeAndPyQt If you're getting File "qt.pyc", line 7, in __load Import Error: No module named sip, read this

Python Eggs

  • ExeWithEggs - A recipe for creating an .exe out of eggs

PythonCard

Python ADODB modules

  • ADODB package Modules named adodb_xxx (like adodb_mysql) are not added automatically, must be added explicitly

PyXML

  • Py2exeAndPyXML If you're getting File "xml\sax\saxexts.pyc", line 77, in make_parser; xml.sax._exceptions.SAXReaderNotAvailable: No parsers found, read this.

Quixote

Quixote is a pythonivc toolkit for web pages which allows one to execute ptl files using ihooks. You can distribute your web application with medusa or twisted and hence you can create a web application without IIS or Apache.

I like to distribute my application with py2exe but I can not make py2exe setup script to recognize that x.ptl is a valid python files. Any idea how to do this? - impossible: py2exeAndQuixote HAM20040602

reportlab

SciPy

  • ScipyImportProblems Using py2exe with scipy ends up with missing cephes and __cvs_version__ messages. Here is a fix.

subprocess

Tix

  • TixSetup - Including the Tix DLL and Tcl files to make Tix apps work.

win32com

win32pipe

wxPython


WorkingWithVariousPackagesAndModules (last edited 2012-06-25 15:49:01 by LeeKamentsky)