0
votes
1answer
28 views
Python Windows Service Problems - Works when using debug argument but not while started as a service?
Hello all, hopefully someone here can shed some light on my issue :D
I've been creating a Windows XP service in python that is designed to monitor/repair selected Windows/Applicat …
1
vote
1answer
19 views
py2exe and email libs again
Following imports:
import pyodbc, sys, smtplib, os
from datetime import date
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.mime.ba …
0
votes
1answer
11 views
reactor.iterate seems to block a program with Py2exe
I'm currently using an application in python which works quite well but when I'm converting it with py2exe, the application seems to be suspended at the first "reactor.iterate"
Ea …
2
votes
1answer
14 views
Building executables for Python 3 and PyQt
Hi all.
I built a rather simple application in Python 3.1 using PyQt4. Being done, I want the application to be distributed to computers without either of those installed.
I almo …
0
votes
3answers
37 views
Any python “compiler” that can statically link the python2x.dll dependency?
It's my understanding that py2exe can only dynamically link a python2x.dll file. Are there any Python "compilers" out there that can package it all into one standalone .exe file f …
1
vote
2answers
35 views
python app to exe not working on WinSRV2003
Hi,
I created little app for sending out emails when something is wrong with server. Used py2exe to create exe file. While it is works absolutely fine on Win7 i have problems wi …
4
votes
4answers
161 views
Are there any alternatives to py2exe?
Are there any alternatives to py2exe?
0
votes
3answers
85 views
py2exe’d version of GTK app can’t read png files
I'm working on making a py2exe version of my app. Py2exe fails at copying some
modules in. My original app loads .png files fine, but the exe version does not:
Traceback (most rec …
3
votes
1answer
112 views
Can Django be used with py2exe?
We'd like to create a Django Intranet application for mass market. We only need to support Windows users, and it needs to be very easy for a Windows admin (or "technical user") to …
0
votes
0answers
12 views
getting names of modules in package from py2exe executable
I've created an executable with py2exe that includes several packages, e.g.,
openstv
openstv.MethodPlugins
openstv.LoaderPlugins
The latter two packages each contain several mod …
4
votes
6answers
519 views
py2exe page says it is licensed under GPL, can I still use it in a python project that is not GPL?
This page says that py2exe is GPL licensed (bottom of the page)
My concern is that you have to distribute some of the files they generate. I think this would be allowed with LGPL …
1
vote
1answer
44 views
Python Service Custom Command Arguments
I am currently working on a python program which runs as a windows service using win32service and win32serviceutil. The service runs as it should and even after using py2exe, every …
1
vote
2answers
106 views
how to reduce size of exe using py2exe
I developed a small program using python and wxwidgets. It is a very simple program that uses only a mini frame to display some information when needed, and the rest of the time it …
0
votes
1answer
18 views
pygtk + py2exe + inno -> icon for shortcut
Hi guys,
I saw quite a few posts regarding this but I was unable to solve this problem that I am facing.
First off, when I do the following in my setup file,
windows=[
{
'script …
2
votes
1answer
114 views
Making a Windows .exe with gui2exe does not work because of missing MSVCP90.dll
I'm trying to compile my python script into a single .exe using gui2exe (which uses py2exe to create a .exe). My program is using wxWidgets and everytime I try to compile it I get …
