-
All builded applications write:
[code]
F:\...y2exe\py2exe\samples\simple\dist>hello.exe
Can't create process, ErrCode=0x000000C1, Description:
Command to be executed:
F:\Lang\sf.net\svn\py2exe\py2exe\samples\simple\dist\hello.exe
Press Enter to exit...
[/code]
My environment:
Os Windows Vista Home Basic Ru + sp2
Python 2.6.2 (r262:71605, Apr 14 2009, 22:40:02...
2009-10-07 08:41:12 UTC by shura_zam
-
By default, py2exe will only look under site-packages/_xmlplus for xml modules if PyXML is installed.A problem occurs if the module in question only exists in the built-in xml module (e.g. xml.etree).
This patch catches ImportErrors associated with xml, checks that is was looking under _xmlplus, and re-tries by forcing py2exe to look under the built-in xml directory.
2009-09-25 03:38:45 UTC by fiona14
-
theller committed revision 687 to the py2exe SVN repository, changing 2 files.
2009-08-14 19:43:50 UTC by theller
-
I used pymssql extention for my python script to connect MSSQL.
[code]
import pymssql
import sys, time
def main():
try:
conerp = pymssql.connect(host='127.0.0.1,1433', user='sa', password='', database='tempdb')
conerp.close()
time.sleep(5)
except Exception :
print 'Connect Error'
sys.exit(1)
if __name__ == '__main__':
main()
[/code]
Runing the .exe file...
2009-08-12 01:40:58 UTC by nobody
-
Here's a patch that addresses the issue. Thus uses the same technique used in mf.py. I don't seem to have the ability to upload files, so I'll include it inline as well as here: http://paste.turbogears.org/paste/85301.
Index: py2exe/py2exe/build_exe.py
===================================================================
--- py2exe/py2exe/build_exe.py (revision 686)
+++...
2009-06-08 18:40:49 UTC by jaraco
-
See Attachment.
2009-06-04 21:07:00 UTC by erezbibi
-
See attachment.
2009-06-04 21:06:09 UTC by erezbibi
-
Same here, I encountered the same problem. But the hack-ish solution I've been working with us to put the dependent files into my application folder using the py2exe script by using the "data_files" option:-
data_files = [
(
'',
[
'DLLs/msvcm90.dll',
'DLLs/msvcp90.dll',
'DLLs/msvcr90.dll'...
2009-06-03 22:17:53 UTC by nobody
-
I also confirm this bug. I have been waiting a long time for a solution.
2009-05-26 04:10:41 UTC by nobody
-
I confirm this bug with py2exe-python2.6.
2009-05-20 10:14:29 UTC by nobody