Differences between revisions 3 and 6 (spanning 3 versions)
Revision 3 as of 2011-01-06 19:11:57
Size: 1493
Editor: techtonik
Comment: PY2EXE_VERBOSE
Revision 6 as of 2024-07-24 05:13:36
Size: 291
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
If your programs alters Python import mechanism somehow (like many applications with plugins and extensions) you may run into problems with py2exe. This page is dedicated to explain the reasons for these problems and how to solve them. If you have an experience to share, please add your story here.

=== Check that zipextimporter works on your system ===
zipextimporter is the starting component of py2exe that may cause problems. To debug it you will need _memimporter.pyd binary module. 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 debugging using standard _socket.pyd module. Wrap _socket.pyd from your Python version into ''lib.zip'' and use the script to see that zipextimporter works ok.

{{{
#!python
import zipextimporter
zipextimporter.install()

import sys
sys.path.insert(0, "lib.zip")

import _socket
print _socket
# <module '_socket' from 'lib.zip\_socket.pyd'>
print _socket.__file__
# 'lib.zip\\_socket.pyd'
print _socket.__loader__
# <ZipExtensionImporter object 'lib.zip'>
# Reloading also works correctly:
print _socket is reload(_socket)
# True
}}}

=== Debugging compiled .exe with PY2EXE_VERBOSE ===
PY2EXE_VERBOSE is an environment variable that is understood by compiled .exe module. By setting this variable to 1 or 2 you can get verbose (or very verbose) log of actions inside py2exe imported component.
My name is Salvatore and I am studying Journalism and Integrated International Studies at Paryd / Sweden.<<<BR>>
><<<BR>>
>
<<<BR>>
><<<BR>>
>
Here is my internet page - [[http://hillebrand.de/index.php?title=Natures_Elixir_CBD:_CBD_For_Senior_Health|natures Elixir CBD Ingredients]]

My name is Salvatore and I am studying Journalism and Integrated International Studies at Paryd / Sweden.<
><
> <
><
> Here is my internet page - natures Elixir CBD Ingredients

TroubleshootingImportErrors (last edited 2024-07-24 06:22:06 by JimmyRetzlaff)