luego uso el py2exe para pasarlo a exe, lo cual sucede
el problema aparece al ejecutar el exe, que me pide un dll
luedo de descargar el dll solo me da un error
buscando en internet encontre que habia que hacer unos arreglos al setup.py
pero con eso ya no me pide el dll y solo me da el error de inmediato
Código Python:
Ver original
#!/usr/bin/python from distutils.core import setup import py2exe manifest = """ <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <!-- Copyright (c) Microsoft Corporation. All rights reserved. --> <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> <noInheritable/> <assemblyIdentity type="win32" name="Microsoft.VC90.CRT" version="9.0.21022.8" processorArchitecture="x86" publicKeyToken="1fc8b3b9a1e18e3b" /> <file name="msvcr90.dll" /> <file name="msvcp90.dll" /> <file name="msvcm90.dll" /> </assembly> """ """ installs manifest and icon into the .exe but icon is still needed as we open it for the window icon (not just the .exe) changelog and logo are included in dist """ setup( windows = [ { "script": "c:\Simulador\simulador.py", "icon_resources": [(1, "c:\Simulador\simulador.ico")], "other_resources": [(24,1,manifest)] } ], data_files=["c:\Simulador\simulador.ico"] )
alguna idea de alguien que lograra hacer esto antes??