Re: Py2exe problem with pyqt+matplotlib

2011-03-15 Thread John Posner
On 2:59 PM, Massi wrote: > I everyone, > > I'm trying to write a setup file for py2exe (0.6.9) to convert my > script into a windows (on win 7) executable. In my script (python2.6) > I use PyQt and matplotlib. Here is the setup.py file: > ImportError: No module named Tkinter > > Obviously Tkinter

Py2exe problem with pyqt+matplotlib

2011-03-15 Thread Massi
I everyone, I'm trying to write a setup file for py2exe (0.6.9) to convert my script into a windows (on win 7) executable. In my script (python2.6) I use PyQt and matplotlib. Here is the setup.py file: from distutils.core import setup import py2exe import matplotlib as mpl import glob, shutil mp

Re: py2exe problem

2009-04-06 Thread Wolfgang Forstmeier
On 03.04.2009 15:58, Dave Angel wrote: Wolfgang Forstmeier wrote: Ok, but do you really use idlelib for something? Or it's just some random code you found somewhere and drop into your application? Ah yes, I really use this. I create some message boxes for a little GUI application that c

Re: py2exe problem

2009-04-03 Thread Dave Angel
Wolfgang Forstmeier wrote: Ok, but do you really use idlelib for something? Or it's just some random code you found somewhere and drop into your application? Ah yes, I really use this. I create some message boxes for a little GUI application that controls some other program with COM. Ru

Re: py2exe problem

2009-04-03 Thread Gabriel Genellina
En Fri, 03 Apr 2009 03:55:20 -0300, Wolfgang Forstmeier escribió: On 03.04.2009 05:29, Gabriel Genellina wrote: En Thu, 02 Apr 2009 08:06:22 -0300, Wolfgang Forstmeier escribió: On 02.04.2009 11:34, Gabriel Genellina wrote: En Wed, 01 Apr 2009 17:51:52 -0300, Wolfgang Forstmeier escribió:

Re: py2exe problem

2009-04-03 Thread Wolfgang Forstmeier
On 03.04.2009 05:29, Gabriel Genellina wrote: En Thu, 02 Apr 2009 08:06:22 -0300, Wolfgang Forstmeier escribió: On 02.04.2009 11:34, Gabriel Genellina wrote: En Wed, 01 Apr 2009 17:51:52 -0300, Wolfgang Forstmeier escribió: what kind of error do I have with getting this error at starting my

Re: py2exe problem

2009-04-02 Thread Gabriel Genellina
En Thu, 02 Apr 2009 08:06:22 -0300, Wolfgang Forstmeier escribió: On 02.04.2009 11:34, Gabriel Genellina wrote: En Wed, 01 Apr 2009 17:51:52 -0300, Wolfgang Forstmeier escribió: what kind of error do I have with getting this error at starting my app. Im am not using IdleConf.GetOption rig

Re: py2exe problem

2009-04-02 Thread Gabriel Genellina
En Thu, 02 Apr 2009 08:06:22 -0300, Wolfgang Forstmeier escribió: On 02.04.2009 11:34, Gabriel Genellina wrote: En Wed, 01 Apr 2009 17:51:52 -0300, Wolfgang Forstmeier escribió: what kind of error do I have with getting this error at starting my app. Im am not using IdleConf.GetOption rig

Re: py2exe problem

2009-04-02 Thread Wolfgang Forstmeier
On 02.04.2009 11:34, Gabriel Genellina wrote: En Wed, 01 Apr 2009 17:51:52 -0300, Wolfgang Forstmeier escribió: what kind of error do I have with getting this error at starting my app. Im am not using IdleConf.GetOption right now. Warning: configHandler.py - IdleConf.GetOption - problem retri

Re: py2exe problem

2009-04-02 Thread Gabriel Genellina
En Wed, 01 Apr 2009 17:51:52 -0300, Wolfgang Forstmeier escribió: what kind of error do I have with getting this error at starting my app. Im am not using IdleConf.GetOption right now. Warning: configHandler.py - IdleConf.GetOption - problem retrieving configration option 'name' from s

py2exe problem

2009-04-01 Thread Wolfgang Forstmeier
Hey list, what kind of error do I have with getting this error at starting my app. Im am not using IdleConf.GetOption right now. Warning: configHandler.py - IdleConf.GetOption - problem retrieving configration option 'name' from section 'Keys'. returning default value: '' -- http://mail.pyth

Python 2.6 + Pytz 2009a + Py2exe problem

2009-03-18 Thread Jeff Peck
I've recently upgraded to python 2.6 and I'm having trouble building an executable using the new Pytz package. The relevant section of setup.py is below. This was working under python 2.5 using an ancient version of pytz (2006p). setup( console = [dict(script = my_script.py')], optio

Re: Tkinter vs. py2exe problem

2007-12-05 Thread msunderwd
On Dec 5, 10:46 am, [EMAIL PROTECTED] wrote: > On Dec 5, 10:07 am, [EMAIL PROTECTED] wrote: > > > > > On Dec 5, 9:50 am, [EMAIL PROTECTED] wrote: > > > > Having a problem with "compiling" a Tkinter/python program using > > > py2exe (and pyinstaller, for that matter)... > > > > I have several dialog

Re: Tkinter vs. py2exe problem

2007-12-05 Thread msunderwd
On Dec 5, 10:07 am, [EMAIL PROTECTED] wrote: > On Dec 5, 9:50 am, [EMAIL PROTECTED] wrote: > > > > > Having a problem with "compiling" a Tkinter/python program using > > py2exe (and pyinstaller, for that matter)... > > > I have several dialogs that are derived from the tkSimpleDialog.Dialog > > cla

Re: Tkinter vs. py2exe problem

2007-12-05 Thread msunderwd
On Dec 5, 9:50 am, [EMAIL PROTECTED] wrote: > Having a problem with "compiling" a Tkinter/python program using > py2exe (and pyinstaller, for that matter)... > > I have several dialogs that are derived from the tkSimpleDialog.Dialog > class. These work just fine if run through the interpreter. Wh

Re: Tkinter vs. py2exe problem

2007-12-05 Thread msunderwd
On Dec 5, 9:50 am, [EMAIL PROTECTED] wrote: > Having a problem with "compiling" a Tkinter/python program using > py2exe (and pyinstaller, for that matter)... > > I have several dialogs that are derived from the tkSimpleDialog.Dialog > class. These work just fine if run through the interpreter. Wh

Re: Tkinter vs. py2exe problem

2007-12-05 Thread msunderwd
On Dec 5, 9:50 am, [EMAIL PROTECTED] wrote: > Having a problem with "compiling" a Tkinter/python program using > py2exe (and pyinstaller, for that matter)... > > I have several dialogs that are derived from the tkSimpleDialog.Dialog > class. These work just fine if run through the interpreter. Wh

Tkinter vs. py2exe problem

2007-12-05 Thread msunderwd
Having a problem with "compiling" a Tkinter/python program using py2exe (and pyinstaller, for that matter)... I have several dialogs that are derived from the tkSimpleDialog.Dialog class. These work just fine if run through the interpreter. When I "compile" this with py2exe, I don't see any erro

Re: Py2EXE problem

2007-02-28 Thread Sick Monkey
Awesome. That is good to know. On 2/28/07, Thomas Heller <[EMAIL PROTECTED]> wrote: Sick Monkey schrieb: > Ok I found an extremely easy way to resolving this issue (I cannot believe I > did not think of it sooner). > > After Py2exe created the .exe file I noticed a "library.zip" file. I took

Re: Py2EXE problem

2007-02-28 Thread Thomas Heller
Sick Monkey schrieb: > Ok I found an extremely easy way to resolving this issue (I cannot believe I > did not think of it sooner). > > After Py2exe created the .exe file I noticed a "library.zip" file. I took a > look at the Py2exe output, and saw all of the libraries that it failed to > insert.

Re: Py2EXE problem

2007-02-28 Thread Sick Monkey
Ok I found an extremely easy way to resolving this issue (I cannot believe I did not think of it sooner). After Py2exe created the .exe file I noticed a "library.zip" file. I took a look at the Py2exe output, and saw all of the libraries that it failed to insert. I copied all of the .pyc that m

Py2EXE problem

2007-02-27 Thread Sick Monkey
Maybe this is not the board to post this, but hopefully with all of the python experts out there maybe one of you have encountered this. I wrote an application that sends an email with an attachment. When I run it, it runs great with no issues what-so--ever. When I thought I was finally finish

Re: py2exe Problem with cairo

2006-12-09 Thread Michax
> seen this: > > http://www.py2exe.org/index.cgi/Py2exeAndPyGTK Thanks ,I will check this one . Sorry for double post. -- http://mail.python.org/mailman/listinfo/python-list

Re: py2exe Problem with cairo

2006-12-09 Thread Fredrik Lundh
Michax wrote: > Hi, > > I have problem with my py2exe. When I want to run my compiled exe, then > i get error information like that: > > Trackback (most recent call last): > File "mysql_gui.py", line 2 in ? > File "gtk\__int__.pyc", line 12, in ? > File "gtk\_gtk.pyc", line 12, in ? >

py2exe Problem with cairo

2006-12-09 Thread Michax
Hi, I have problem with my py2exe. When I want to run my compiled exe, then i get error information like that: Trackback (most recent call last): File "mysql_gui.py", line 2 in ? File "gtk\__int__.pyc", line 12, in ? File "gtk\_gtk.pyc", line 12, in ? File "gtk\_gtk.pyc", line 10,

py2exe Problem with cairo

2006-12-09 Thread Michax
Hi, I have problem with my py2exe. When I want to run my compiled exe, then i get error information like that: Trackback (most recent call last): File "mysql_gui.py", line 2 in ? File "gtk\__int__.pyc", line 12, in ? File "gtk\_gtk.pyc", line 12, in ? File "gtk\_gtk.pyc", line 10,

Re: py2exe problem

2006-04-16 Thread bwaha
"Serge Orlov" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > bwaha wrote: > > Thanks for the suggestion, but I definitely have only one version installed. > > In fact I uninstalled it and installed an earlier version (2.5.5.1) to see > > if it was specifically wxPython related. No c

Re: py2exe problem

2006-04-16 Thread Serge Orlov
bwaha wrote: > Thanks for the suggestion, but I definitely have only one version installed. > In fact I uninstalled it and installed an earlier version (2.5.5.1) to see > if it was specifically wxPython related. No change. Then why don't you try to print what is passed to SetValue in the exe, just

Re: py2exe problem

2006-04-16 Thread bwaha
"Serge Orlov" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > bwaha wrote: > > First time trying to create an executable with py2exe. I have a small > > program which makes use of python23 (2.3.5?), wxpython ('2.6.2.1'), > > matplotlib ('0.83.2'), win32com (latest?), Numeric ('23.7'

Re: py2exe problem

2006-04-15 Thread Serge Orlov
bwaha wrote: > First time trying to create an executable with py2exe. I have a small > program which makes use of python23 (2.3.5?), wxpython ('2.6.2.1'), > matplotlib ('0.83.2'), win32com (latest?), Numeric ('23.7') on Windows XP & > Win2000. The program runs without problem but as an exe it does

py2exe problem

2006-04-15 Thread bwaha
First time trying to create an executable with py2exe. I have a small program which makes use of python23 (2.3.5?), wxpython ('2.6.2.1'), matplotlib ('0.83.2'), win32com (latest?), Numeric ('23.7') on Windows XP & Win2000. The program runs without problem but as an exe it doesn't even get to showi

livewires to py2exe problem :(

2006-01-09 Thread Blaze Bresko
hey, I am using python 2.4 and py2exe v 0.6. I have made a program using pygame/livewires. I have the newest version of both but i dont know what version they are (im on a different computer right now). When I use py2exe to make the exe file, it works and there are no errors in the whole thing. Wh

Re: py2exe problem

2005-06-21 Thread Simon Brunning
On 6/21/05, Austin <[EMAIL PROTECTED]> wrote: > I use py2exe to build python program to "aa.exe". > If this program has a bug, after closed this program, it will show > "aa.exe.log" in this folder. > Is there any ways to avoid this log file? It's probably best just have a try/except at the very to

py2exe problem

2005-06-21 Thread Austin
I use py2exe to build python program to "aa.exe". If this program has a bug, after closed this program, it will show "aa.exe.log" in this folder. Is there any ways to avoid this log file? -- http://mail.python.org/mailman/listinfo/python-list

Re: py2exe problem

2005-01-27 Thread Harald Massa
Thomas, > Would the above (include all encodings stuff by default) be a good > solution, or do you have other ideas? I assume a good solution would involve switching pythons default from "ASCII" to "UNICODE" :) But ... as far as py2exe is concerned, yeah, I think it would be helpfull to includ

Re: py2exe problem

2005-01-26 Thread Thomas Heller
Harald Massa <[EMAIL PROTECTED]> writes: > Thomas Heller <[EMAIL PROTECTED]> wrote in > news:[EMAIL PROTECTED]: > >>> >>> A software development system which REALLY solves the encodings >>> problem WITHOUT creating a swarm of new ones could would challange >>> even my devotedness to Python :

Re: py2exe problem

2005-01-26 Thread Harald Massa
Thomas Heller <[EMAIL PROTECTED]> wrote in news:[EMAIL PROTECTED]: >> >> A software development system which REALLY solves the encodings >> problem WITHOUT creating a swarm of new ones could would challange >> even my devotedness to Python : > > AFAIK, McMillan Installer solves this by inclu

Re: py2exe problem

2005-01-26 Thread Thomas Heller
Harald Massa <[EMAIL PROTECTED]> writes: > Grant Edwards > >> LookupError: no codec search functions registered: can't find encoding >> Googling for the error message will find you the answer. > > http://starship.python.net/crew/theller/moin.cgi/Py2Exe > > carries within "encodings" and "encodi

Re: py2exe problem

2005-01-26 Thread Harald Massa
Grant Edwards > LookupError: no codec search functions registered: can't find encoding > Googling for the error message will find you the answer. http://starship.python.net/crew/theller/moin.cgi/Py2Exe carries within "encodings" and "encodings again" receipes to get it working. A software d

Re: py2exe problem

2005-01-25 Thread Grant Edwards
On 2005-01-26, Club-B42 <[EMAIL PROTECTED]> wrote: > i've compiled my programm using command "python setup.py py2exe >1" > > python script works fine, but .exe version fails with > LookupError: no codec search functions registered: can't find encoding Googling for the error message will find you

py2exe problem

2005-01-25 Thread Club-B42
i've compiled my programm using command "python setup.py py2exe >1" python script works fine, but .exe version fails with = D:\[Egor]\Scripts\B-4-2\la2luncher\dist>la2launcher.exe Traceback (most recent call last): File "la2launc