About 50 results
Open links in new tab
  1. FrontPage - py2exe.org

    Oct 27, 2020 · py2exe is used by BitTorrent, SpamBayes, and thousands more - py2exe averages over 5,000 downloads per month. In an effort to limit Wiki spam, this front page is not editable. Feel free to …

  2. Tutorial - py2exe.org

    Jun 17, 2020 · Tutorial py2exe turns Python programs into packages that can be run on other Windows computers without needing to install Python on those computers. You must run py2exe on a …

  3. py2exe - convert python scripts into standalone windows programs

    Using py2exe Assuming you have written a python script myscript.py which you want to convert into an executable windows program, able to run on systems without a python installation. If you don't …

  4. TroubleshootingImportErrors - py2exe.org

    Jul 24, 2024 · These modules can be found in binary py2exe distributions for your Python version (I unpack .exe distribution with 7Zip). zipextimporter contains the following script to help with …

  5. Py2Exe - py2exe.org

    py2exe and SciPy ScipyImportProblems Using py2exe with scipy ends up with missing cephes and __cvs_version__ messages. Here is a fix. py2exe and PythonCard PythonCardSetup Getting …

  6. Py2exeAndPyQt - py2exe.org

    Oct 16, 2011 · Using PyQt4 with Databases When deploying applications which use PyQt4 and SQLite: Add " PyQt4. QtSql ' to the setup includes. Copy the contents of PyQt4 \plugins\sqldrivers to …

  7. ListOfOptions - py2exe.org

    Nov 4, 2009 · Py2exe extends Distutils setup keywords In addition to the standard distutils setup keywords, the following py2exe keywords specify what and how to build.

  8. OptimizingSize - py2exe.org

    py2exe automatically includes the entire encodings library in the distribution. If you're absolutely sure you won't need to deal with Unicode (or any kind of encoding) you can specify ascii=True, saving a …

  9. WorkingWithVariousPackagesAndModules - py2exe.org

    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 …

  10. PassingOptionsToPy2Exe - py2exe.org

    Avoid sys.argv to pass options to py2exe Many users write a special setup script for py2exe that simply can be run to build the exe, without the need to specify command line options by hand, each time. …