GithubHelp home page GithubHelp logo

gui2exe's People

Watchers

 avatar

gui2exe's Issues

Install From Zip File Fails on Win32

What steps will reproduce the problem?
1. Download v0.3 zip file.
2. On windows (w2k) type "python setup.py install"
3. Install fails.

What is the expected output? What do you see instead?

C:\Ftp\gui2exe\GUI2Exe>python setup.py install
C:\Python25\lib\distutils\dist.py:263: UserWarning: Unknown distribution
option:
 'windows'
  warnings.warn(msg)
C:\Python25\lib\distutils\dist.py:263: UserWarning: Unknown distribution
option:
 'zipfile'
  warnings.warn(msg)
running install
running build
running install_data
creating C:\Python25\docs
creating C:\Python25\docs\images
creating C:\Python25\docs\images\icons
error: can't copy 'D:\MyProjects\GUI2Exe\docs\images\icon\exclamation.gif':
doesn't exist or not a regular file

What version of GUI2Exe, Python and wxPython are you using? On what
operating system?

0.3, 2.5.1, 2.8.10

Please provide any additional information below.

It looks like the file path is hard coded and refers to the maintainer's
hard drive not a relative path to the file in the distribution. The GIF
file referred in the traceback does exist in the zip distribution.

Original issue reported on code.google.com by [email protected] on 10 Jun 2009 at 6:13

0.5.0 and svn - keyError u'Opzioni' on vista

What steps will reproduce the problem?
1. launch gui2exe.py

What is the expected output? What do you see instead?
after the splash screen I see the Something Bad Appened window, but then
also that goes away, here is the stack trace:

*** 09 novembre 2009 @ 12:40:53 ***
Traceback (most recent call last):
  File "C:\Python25\lib\site-packages\wx-2.8-msw-unicode\wx\_misc.py", line
1342, in Notify
    self.notify()
  File "C:\Python25\lib\site-packages\wx-2.8-msw-unicode\wx\_core.py", line
14720, in Notify
    self.result = self.callable(*self.args, **self.kwargs)
  File "C:\Users\marco\workspace\GUI2Exe\GUI2Exe.py", line 3896, in ShowMain
    frame = GUI2Exe(None, -1, "", size=(xvideo, yvideo))
  File "C:\Users\marco\workspace\GUI2Exe\GUI2Exe.py", line 359, in __init__
    self.BuildRibbonBar()
  File "C:\Users\marco\workspace\GUI2Exe\GUI2Exe.py", line 592, in
BuildRibbonBar
    tab = RB.RibbonPage(self._ribbon, wx.ID_ANY, label,
self.CreateBitmap(label))
  File "C:\Users\marco\workspace\GUI2Exe\GUI2Exe.py", line 3402, in
CreateBitmap
    return CreateBitmap(bmpName)
  File "C:\Users\marco\workspace\GUI2Exe\Utilities.py", line 607, in
CreateBitmap
    return catalog[bmpName].GetBitmap()
KeyError: u'Opzioni'


What version of GUI2Exe, Python and wxPython are you using? On what
operating system?
both GUI2Exe 0.5.0 and SVN checkout, python 2.5.4, wxpython 2.8.10.1 (Unicode)
on windows vista home premium

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 9 Nov 2009 at 11:49

Fixes to the Inno setup

What steps will reproduce the problem?
The current Inno setup works doesn't install correctly, and
it doesn't generate a desktop shortcut during installation.

What version of GUI2Exe, Python and wxPython are you using? On what operating 
system?
v0.5.0 on Vista

Please provide any additional information below.

I fixed my application by adding the following lines.
It would be nice for the next version of GUI2EXE to include these changes.
Right now, I have to edit the file manually. Doing automatically would be 
better.


[Icons]
; THIS DOESN'T WORK because it uses / instead \ BUT...
;This section must be customized and edited as needed!
;Name: "{group}/ScriptPanel"; Filename: "{app}/ScriptPanel.exe"
;Name: "{group}/Uninstall ScriptPanel"; Filename: "{uninstallexe}"

; This works. where DummyApp is the AppName 
; it must specify WorkingDir to start
Name: "{commondesktop}\DummyApp"; Filename: "{app}\DummyApp.exe"; WorkingDir: 
"{app}" ;Tasks: desktopicon
Name: "{group}\DummyApp"; Filename: "{app}\DummyApp.exe" ; WorkingDir: "{app}"

; Adds the creation of the desktopIcon, WorkingDir specified above
[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: 
"{cm:AdditionalIcons}"; Flags: unchecked

[Run]
Filename: "{app}\DummyApp.exe"; Description: "{cm:LaunchProgram,DummyApp}"; 
Flags: nowait postinstall skipifsilent; WorkingDir: "{app}"


Cheers!


Original issue reported on code.google.com by [email protected] on 24 Jul 2010 at 11:18

Gui2Exe 0.5 doesn`t work on Mac Leopard

What steps will reproduce the problem?
1. cd to Gui2exe.py folder
2. python Gui2exe
3.

What is the expected output? What do you see instead?
I should see the software opened but what I get is this:

Mon Dec  6 08:23:35 gonzaga.cti.gov.br Python[574] <Error>: 
kCGErrorIllegalArgument: CGSGetWindowBounds: NULL window
Mon Dec  6 08:23:35 gonzaga.cti.gov.br Python[574] <Error>: kCGErrorFailure: 
Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
Mon Dec  6 08:23:35 gonzaga.cti.gov.br Python[574] <Error>: 
CGContextRestoreGState: invalid context 0x0
*** 06 December 2010 @ 08:23:37 ***
Traceback (most recent call last):
  File "/usr/local/lib/wxPython-unicode-2.8.11.0/lib/python2.7/site-packages/wx-2.8-mac-unicode/wx/_misc.py", line 1357, in Notify
    self.notify()
  File "/usr/local/lib/wxPython-unicode-2.8.11.0/lib/python2.7/site-packages/wx-2.8-mac-unicode/wx/_core.py", line 14742, in Notify
    self.result = self.callable(*self.args, **self.kwargs)
  File "GUI2Exe.py", line 3874, in ShowMain
    frame = GUI2Exe(None, -1, "", size=(xvideo, yvideo))
  File "GUI2Exe.py", line 406, in __init__
    self.SetAllFlags()
  File "GUI2Exe.py", line 1253, in SetAllFlags
    canUse = self._mgr.CanUseModernDockArt()
AttributeError: 'AuiManager' object has no attribute 'CanUseModernDockArt'


What version of GUI2Exe, Python and wxPython are you using? On what operating 
system?
Python 2.7 and wxPython 2.8 for python 2.7.
Mac OSX Lepard
Version: 10.6.5
Kernel Version: Darwin 10.5.0

Please provide any additional information below.
None additional information.

Original issue reported on code.google.com by [email protected] on 6 Dec 2010 at 10:26

GUI2Exe.py not running

What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?
i should see a gui type of application but instead i am seeing an error 
indicating 
"DLL LOAD FAILED %1 IS NOT A VALID WIN 32 APPLIACTION"

What version of GUI2Exe, Python and wxPython are you using? On what operating 
system?
windows 7 64-bit

Please provide any additional information below.
same problem persits with py2exe when i was using it instead of gui2exe.


Original issue reported on code.google.com by [email protected] on 27 Sep 2010 at 12:30

PyEmbeddedImage requirement

What steps will reproduce the problem?
1. Copy zip to dir
2. Execute python GUI2Exe.py
3. I get
"""""""""""""
Traceback (most recent call last):
  File "GUI2Exe.py", line 138, in <module>
    from ProjectTreeCtrl import ProjectTreeCtrl
  File "/home/hans/temp/gui2exe/ProjectTreeCtrl.py", line 7, in <module>
    from Widgets import PyBusyInfo
  File "/home/hans/temp/gui2exe/Widgets.py", line 29, in <module>
    from Utilities import flatten, unique, RecurseSubDirs, GetLocaleDict,
GetAvailLocales
  File "/home/hans/temp/gui2exe/Utilities.py", line 20, in <module>
    from AllIcons import catalog
  File "/home/hans/temp/gui2exe/AllIcons.py", line 4, in <module>
    from wx.lib.embeddedimage import PyEmbeddedImage
ImportError: No module named embeddedimage
""""""""""""""

What is the expected output? What do you see instead?
A gui I think

What version of the product are you using? On what operating system?
OpenSUSE 10.3, GUI2Exe 0.2

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 21 Oct 2008 at 10:27

Error while installing

When installing v0.5.0 I get the following output:

/usr/bin/python Setup.py install --prefix=/usr --
root=/usr/src/packages/BUILDROOT/python-gui2exe-0.5.0-1.x86_64 --record-
rpm=INSTALLED_FILES

What is the expected output? What do you see instead?
/usr/lib64/python2.6/distutils/dist.py:266: UserWarning: Unknown 
distribution option: 'windows'
  warnings.warn(msg)
/usr/lib64/python2.6/distutils/dist.py:266: UserWarning: Unknown 
distribution option: 'zipfile'
  warnings.warn(msg)
running install
running build
running install_data
creating /usr/src/packages/BUILDROOT/python-gui2exe-0.5.0-1.x86_64/usr
creating /usr/src/packages/BUILDROOT/python-gui2exe-0.5.0-1.x86_64/usr/docs
creating /usr/src/packages/BUILDROOT/python-gui2exe-0.5.0-
1.x86_64/usr/docs/images
creating /usr/src/packages/BUILDROOT/python-gui2exe-0.5.0-
1.x86_64/usr/docs/images/icons
error: can't copy 
'D:\MyProjects\GUI2Exe\docs\images\icons\exclamation.gif': doesn't exist or 
not a regular file
error: Bad exit status from /var/tmp/rpm-tmp.407fan (%install)


Thanks.

Original issue reported on code.google.com by [email protected] on 16 Oct 2009 at 1:25

#py2exe@freenode is empty

What steps will reproduce the problem?
1. join the channel
2. see no one there

What is the expected output? What do you see instead?

I excepted to see someone online - not many but at least 2 or 3
I saw only one online who told me that I woun't get help there - he only
tried times ago

What version of GUI2Exe, Python and wxPython are you using? On what
operating system?
doesn't matter

Original issue reported on code.google.com by [email protected] on 10 Apr 2010 at 10:36

Issue 12 is not fixed.

Issue 12 is not fixed. I added a new comment, but it still shows as "Fixed" 
and the software doesn't give me an option to say that it is not fixed.

Original issue reported on code.google.com by [email protected] on 17 Jan 2010 at 2:34

Error when removing empty item from "Python Module" at py2pp in MacOS

What steps will reproduce the problem?
1. Open GUI2Exe
2. Choose py2app
3. Add empty item into Python Module
4. Remove item from Python Module

#---- Traceback Info ----#
*** 03 March 2010 @ 11:02:50 ***
Traceback (most recent call last):
  File "/Volumes/file/code/gui2exe-read-only/Widgets.py", line 429, in
OnDeleteSelected
    self.RemoveOptionsButton(ind)
  File "/Volumes/file/code/gui2exe-read-only/Widgets.py", line 745, in
RemoveOptionsButton
    itemRect = self.GetItemRect(indx)
  File
"/usr/local/lib/wxPython-unicode-2.8.10.1/lib/python2.6/site-packages/wx-2.8-mac
-unicode/wx/_controls.py",
line 4603, in GetItemRect
    return _controls_.ListCtrl_GetItemRect(*args, **kwargs)
PyAssertionError: C++ assertion "index >= 0 && (size_t)index <
GetItemCount()" failed at
/BUILD/wxPython-src-2.8.10.1/src/generic/listctrl.cpp(4191) in
GetItemRect(): invalid index in GetItemRect
#---- End Traceback Info ----#

#---- System Information ----#
GUI2Exe Version: 0.5.0
Operating System: Mac OS X (Darwin 9.8.0 i386)
Mac OSX: 10.5.8
Python Version: 2.6.2 (r262:71600, Apr 16 2009, 09:17:39) 
[GCC 4.0.1 (Apple Computer, Inc. build 5250)]
wxPython Version: 2.8.10.1 (mac-unicode)
wxPython Info: (__WXMAC__, wxMac, unicode, wx-assertions-on, SWIG-1.3.29,
mac-cg, mac-native-tb)
Python Encoding: Default=utf-8  File=utf-8
wxPython Encoding: utf-8
System Architecture: 32bit i386
Byte order: little
Frozen: False
#---- End System Information ----#


Original issue reported on code.google.com by [email protected] on 3 Mar 2010 at 2:07

gui2exe V3 won't run on linux

I ran version 3 and got this error on linux a64 
TypeError: SetSplashShape() takes exactly 1 argument (2 given)

here is the error output

#---- Notes ----#
Please provide additional information about the crash here



#---- System Information ----#
GUI2Exe Version: 0.3
Operating System: Linux 2.6.27-11-generic x86_64
Python Version: 2.5.2 (r252:60911, Oct  5 2008, 19:29:17) 
[GCC 4.3.2]
wxPython Version: 2.8.8.0 (gtk2-unicode)
wxPython Info: (__WXGTK__, wxGTK, unicode, gtk2, wx-assertions-off,
SWIG-1.3.29)
Python Encoding: Default=UTF-8  File=UTF-8
wxPython Encoding: utf-8
System Architecture: 64bit x86_64
Byte order: little
Frozen: False
#---- End System Information ----#

#---- Traceback Info ----#
*** 06 February 2009 @ 21:17:32 ***
TypeError: SetSplashShape() takes exactly 1 argument (2 given)

#---- End Traceback Info ----#



Original issue reported on code.google.com by [email protected] on 7 Feb 2009 at 5:09

Option to include folder as data_file

Hello,

I would like to request option to include entire folder for `data_file`.

Here you can find nice function for that (last code listing `find_data_files`):
http://www.py2exe.org/index.cgi/data_files

Best regards


Original issue reported on code.google.com by [email protected] on 22 Oct 2012 at 8:13

gui2exe's project doesn't compile

What steps will reproduce the problem?
1. create a project
2. add some imported modules
3. add some files
4. Perform a Dry Run

What is the expected output? What do you see instead?
I expected "Successful done" but got lot's of Error Messages

What version of GUI2Exe, Python and wxPython are you using? On what
operating system?
py 2.6
wx 2.8
gui2exe 0.5


scerenshot with the messages is attached

Original issue reported on code.google.com by [email protected] on 10 Apr 2010 at 10:34

Attachments:

GUI2EXE does not work with wxPython 2.9

What steps will reproduce the problem?
1. Install python with wxpython 2.9
2. open gui2exe
3. try and create a project.

What is the expected output? What do you see instead?
I would expect it to create an empty project.
Instead, it throws a error:
 File "D:\NekoProfile\Desktop\Repository\Programming\Code\Python\GUI2EXE\LabelBook.py", line 730, in InitializeColors
    self._colorsMap.update({INB_HILITE_TAB_COLOR: wx.NamedColor("LIGHT BLUE")})
AttributeError: 'module' object has no attribute 'NamedColor'

It seems that wxPython 2.9 has removed the aliases from the american spelling 
to the english spelling. I batch search&replaced all instances of 'NamedColor' 
to 'NamedColour', and it exposed another error.

Second error:
  File "D:\NekoProfile\Desktop\Repository\Programming\Code\Python\GUI2EXE\Py2ExePanel.py", line 273, in LayoutItems
    commonGridSizer.AddGrowableCol(6)
  File "C:\Python27\lib\site-packages\wx-2.9.3-msw\wx\_core.py", line 15371, in AddGrowableCol
    return _core_.FlexGridSizer_AddGrowableCol(*args, **kwargs)
PyAssertionError: C++ assertion "!m_cols || idx < (size_t)m_cols" failed at 
..\..\src\common\sizer.cpp(1956) in wxFlexGridSizer::AddGrowableCol(): invalid 
column index

I think that AddGrowableCol is now zero-indexed. Anyways, I just commented out 
all lines including ".AddGrowableCol(6)" (there are three, I think), and I then 
started running into unrelated DLL errors (not a gui2exe problem).

What version of GUI2Exe, Python and wxPython are you using? On what operating 
system?

Python 2.7.2, wxPython 2.9.2.4 and 2.9.3.0 (I upgraded to see if it fixed the 
issues. It didn't)

Please provide any additional information below.

None, really, it's all above.

Original issue reported on code.google.com by [email protected] on 29 Dec 2011 at 5:49

Use of absolute paths reduces the tools usefulness

What steps will reproduce the problem?
1. Generate an install script in the same directory as your source
2. Move/copy the directory, or if it is a removable disk unmount and mount 
so it has a different drive letter.  If it is a copy then make an obvious 
mode to your app - e.g. icon/title/bgcolour change
3. Try running setup.py in the new location

What is the expected output? What do you see instead?
Expect the same output as in old directory, if directory/drive moved lots 
of file not found messages, if copy then changes not present in output 
files. (Note this is also the issue with the setup.py install in gui2exe 
itself).

What version of GUI2Exe, Python and wxPython are you using? On what 
operating system?


Please provide any additional information below.
This problem arrises because data_files, icon_resources, etc, all use 
absolute paths, in practical use it is not that unusual to have code in 
varing locations.  The solution is to either use relative paths for all 
names that start with the directory that setup.py is stored in or possibly 
offer the user the option of using relative paths on any file select.

Original issue reported on code.google.com by [email protected] on 23 Dec 2009 at 8:53

Version 0.3 on Linux not working

What steps will reproduce the problem?
1. On Linux, copy zip to dir
2. Run python Setup.py install
3. Get error about drive D:/ not being found 
error: can't copy
'D:\MyProjects\GUI2Exe\docs\images\icons\exclamation.gif': doesn't exist or
not a regular file

What is the expected output? What do you see instead?
To install GUI2EXE

What version of GUI2Exe, Python and wxPython are you using? On what
operating system?
GUI2Exe 0.3, Python 2.5.1, wxGTK/Python 2.8.9.1

Please provide any additional information below.
Just running the GUI2Exe.py script generates a SegFault.

Original issue reported on code.google.com by [email protected] on 20 Feb 2009 at 9:54

vendorID support

Hi,

this is a feature requirement, not a bug report.

Could you add support for the vendorID package? It is very useful for
packaging PyQt applications.

Thanks!


Original issue reported on code.google.com by [email protected] on 7 Feb 2009 at 2:12

'int' object not callable py2exe

Firstly thanks for doing this module it has served me well in the past. 
Currently I am working on a larger(3500 lines) wxpython program which works 
fine as a .py file. 
I have a problem. 

Don't know why 'int' object is not callable. 
Steps I have made so far
the programs uses the shelve module - so I thought this was responsible. 
i added code : includes = 'dumbdbm',taken from another forum posting.
My buttons are handled with wx.Bind using ids which are ints - is this the 
problem? 

What steps will reproduce the problem?
1. no output yet at all 
2.
3.

What is the expected output? I should see a wx.frame with 
a splitter object, holding a ListCrtl box and also a text ctrl.

What do you see instead? nothing at all - only error message as above.
there is also a 'preview' frame above the ListCtrl which shows a panel holding 
quite a few buttons that are handled by a method calling 'pass'. 

the program is quite well organised in an MVC design. 


What version of GUI2Exe, Python and wxPython are you using? On what operating 
system?
I have tried it on  wx.2.8 and wx.2.9. 
using Python2.7. Unicode. 

Please provide any additional information below.

Do you want to see the setup.py file?
also errors are cut and pasted below in a txt file. 

Please help .- many thanks in advance. 

Bilal

Original issue reported on code.google.com by [email protected] on 5 May 2015 at 5:47

Attachments:

Segfault on OS X and wxpython 2.9

What steps will reproduce the problem?
1. Run python GUI2Exe.py

What is the expected output? What do you see instead?
Splash image opens, then crash
terminal: 

GuanoMac:GUI2Exe_0.5.1 guano$ python GUI2Exe.py 
Segmentation fault: 11


What version of GUI2Exe, Python and wxPython are you using? On what operating 
system?
GUI2Exe 0.5.1, pyhton 2.7.2 (from python.org) wx 2.9beta

Please provide any additional information below.

Process:         Python [12571]
Path:            
/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/
MacOS/Python
Identifier:      org.python.python
Version:         2.7.2 (2.7.2)
Code Type:       X86-64 (Native)
Parent Process:  bash [11850]

Date/Time:       2012-03-07 17:32:39.779 -0300
OS Version:      Mac OS X 10.7.3 (11D50b)
Report Version:  9
Sleep/Wake UUID: F7E9FCFE-FF5E-4C99-ADC5-996E799E8E20

Interval Since Last Report:          729129 sec
Crashes Since Last Report:           6
Per-App Interval Since Last Report:  1662 sec
Per-App Crashes Since Last Report:   3
Anonymous UUID:                      075827EA-2A3C-41ED-9A60-3999B264A562

Crashed Thread:  0  Dispatch queue: com.apple.main-thread

Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: 0x000000000000000d, 0x0000000000000000

VM Regions Near 0:
--> 
    __TEXT                 0000000100000000-0000000100001000 [    4K] r-x/rwx SM=COW  /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python

Application Specific Information:
objc[12571]: garbage collection is OFF

Original issue reported on code.google.com by [email protected] on 7 Mar 2012 at 8:36

Portable version? Tied to Movable Python?

Would it be possibile to make this GUI work without installation?
It would be really useful to be able to download a single .zip (or a single 
installer) which installs all dependencies and programs needed to be able to 
just click a COMPILE button, select own .py script and get own .exe!
All needed stuff is around there, but... it's a lot "around", bringing all 
together is very complex, long and difficult for beginners!
I installed MovablePython, but I am not able to figure out how to add neede 
pyWin32 to it to enable pyInstaller to work!

Original issue reported on code.google.com by [email protected] on 30 Aug 2012 at 9:44

custom_boot_script problem

What steps will reproduce the problem?
1. GUI2EXE v3
2. py2exe setup
3. enter the boot script
3a. enter the full path as given by the directory picker -> syntax error: 
quotation marks are missing ( from the exported 
setup.py"custom_boot_script": C:\dir\script.py)
3b. add quotation marks manually -> custom boot file is not a valid file
3c. enter the name of the boot script manually without path -> custom boot 
file is not a valid file

Otherwise your GUI2EXE really helps playing around with all the parameters.

regards
   ramin

Original issue reported on code.google.com by [email protected] on 4 May 2009 at 3:31

Impossible to add python script without .py extension

What steps will reproduce the problem?
1. Start a new or existing py2exe project
2. Add a target class and browse for a Python main script
3. Try to open a Python script without extension

What is the expected output? What do you see instead?
I'd like to add this file as my startup script, but can't choose it. I tried 
manually typing the filename, but GUI2exe adds the .py automaticly.

What version of GUI2Exe, Python and wxPython are you using? On what operating 
system?
GUI2exe 0.5.0
Python 2.6.6
wxPython 2.8.10.1
Windows XP

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 11 Nov 2010 at 4:40

gui2exe can't run "ImportError: No module named bsddb"

G:\bakup\python\GUI2Exe_0.5.0\GUI2Exe>GUI2Exe.py
Traceback (most recent call last):
  File "G:\bakup\python\GUI2Exe_0.5.0\GUI2Exe\GUI2Exe.py", line 161, in
<module>

    from DataBase import DataBase
  File "G:\bakup\python\GUI2Exe_0.5.0\GUI2Exe\DataBase.py", line 13, in
<module>

    import bsddb
ImportError: No module named bsddb

Original issue reported on code.google.com by [email protected] on 13 May 2010 at 3:44

bbfreeze gui_only=False switch missing.

Ability to use the new switch in bbfreeze:
gui_only=False

bbFreeze_Class.addScript(r"C:\twisted-xml\proba1.py", gui_only=False)
instead of:
bbFreeze_Class.addScript(r"C:\twisted-xml\proba1.py", gui_only=True)

Without the switch there console output seems to be hidden.

Original issue reported on code.google.com by [email protected] on 21 Jul 2013 at 9:30

Add support for the latest PyInstaller 2.0 (no Build.py)

What steps will reproduce the problem?
1. if use PyInstaller 2.0, can not choose Build.py
2. if rename the pyinstaller.py to Build.py, it builds but will have some error 
information


What is the expected output? What do you see instead?
Support the latest pyinstaller.py



Original issue reported on code.google.com by [email protected] on 19 Aug 2012 at 2:22

Traceback on GUI2Exe.py startup

In r66, launching GIU2Exe.py crashes with the following traceback:

Traceback (most recent call last):
  File
"//usr/local/lib/wxPython-unicode-2.8.9.2/lib/python2.5/site-packages/wx-2.8-mac
-unicode/wx/_misc.py",
line 1342, in Notify
    self.notify()
  File
"//usr/local/lib/wxPython-unicode-2.8.9.2/lib/python2.5/site-packages/wx-2.8-mac
-unicode/wx/_core.py",
line 14676, in Notify
    self.result = self.callable(*self.args, **self.kwargs)
  File "GUI2Exe.py", line 3893, in ShowMain
    frame = GUI2Exe(None, -1, "", size=(xvideo, yvideo))
  File "GUI2Exe.py", line 416, in __init__
    self.SetAllFlags()
  File "GUI2Exe.py", line 1269, in SetAllFlags
    canUse = self._mgr.CanUseModernDockArt()
AttributeError: 'AuiManager' object has no attribute 'CanUseModernDockArt'

Again, this is r66 from SVN, and I'm running a framework build of Python
2.5.2 with wxPython-unicode-2.8.9.2 on OS X 10.5.8. 

Original issue reported on code.google.com by [email protected] on 6 Nov 2009 at 10:39

Py2Exe don't run

#---- Notes ----#
Please provide additional information about the crash here



#---- System Information ----#
GUI2Exe Version: 0.5.0
Operating System: Windows XP (build 2600, Service Pack 3)
Python Version: 2.6.4 (r264:75706, Jan 22 2010, 16:41:54) [MSC v.1500 32
bit (Intel)]
wxPython Version: 2.8.10.1 (msw-unicode)
wxPython Info: (__WXMSW__, wxMSW, unicode, wx-assertions-on, SWIG-1.3.29)
Python Encoding: Default=mbcs  File=mbcs
wxPython Encoding: utf-8
System Architecture: 32bit x86
Byte order: little
Frozen: False
#---- End System Information ----#

#---- Traceback Info ----#
*** 03 aprile 2010 @ 15:03:34 ***
Traceback (most recent call last):
  File "C:\Python26\lib\site-packages\wx-2.8-msw-unicode\wx\_misc.py", line
1342, in Notify
    self.notify()
  File "C:\Python26\lib\site-packages\wx-2.8-msw-unicode\wx\_core.py", line
14720, in Notify
    self.result = self.callable(*self.args, **self.kwargs)
  File "C:\Documents and
Settings\NJ\Documenti\GUI2Exe_0.5.0\GUI2Exe\GUI2Exe.py", line 3874, in ShowMain
    frame = GUI2Exe(None, -1, "", size=(xvideo, yvideo))
  File "C:\Documents and
Settings\NJ\Documenti\GUI2Exe_0.5.0\GUI2Exe\GUI2Exe.py", line 349, in __init__
    self.BuildRibbonBar()
  File "C:\Documents and
Settings\NJ\Documenti\GUI2Exe_0.5.0\GUI2Exe\GUI2Exe.py", line 582, in
BuildRibbonBar
    tab = RB.RibbonPage(self._ribbon, wx.ID_ANY, label,
self.CreateBitmap(label))
  File "C:\Documents and
Settings\NJ\Documenti\GUI2Exe_0.5.0\GUI2Exe\GUI2Exe.py", line 3380, in
CreateBitmap
    return CreateBitmap(bmpName)
  File "C:\Documents and
Settings\NJ\Documenti\GUI2Exe_0.5.0\GUI2Exe\Utilities.py", line 607, in
CreateBitmap
    return catalog[bmpName].GetBitmap()
KeyError: u'Opzioni'


*** 03 aprile 2010 @ 15:24:17 ***
Traceback (most recent call last):
  File "C:\Documents and
Settings\NJ\Documenti\GUI2Exe_0.5.0\GUI2Exe\extern\flatmenu\flatmenu.py",
line 523, in OnIdle
    def OnIdle(self, event):
TypeError: 'int' object is not callable


*** 03 aprile 2010 @ 22:01:02 ***
Traceback (most recent call last):
  File "C:\Documents and
Settings\NJ\Documenti\GUI2Exe_0.5.0\GUI2Exe\extern\flatmenu\flatmenu.py",
line 523, in OnIdle
    def OnIdle(self, event):
TypeError: 'int' object is not callable

#---- End Traceback Info ----#

Original issue reported on code.google.com by [email protected] on 3 Apr 2010 at 8:10

bbfreeze erorr


#---- Notes ----#Please provide additional information about the crash 
here#---- System Information ----#GUI2Exe Version: 0.5.3Operating System: 
Windows XP (build 2600, Service Pack 2)Python Version: 2.7.5 (default, May 15 
2013, 22:43:36) [MSC v.1500 32 bit (Intel)]wxPython Version: 2.8.12.1 
(msw-unicode)wxPython Info: (__WXMSW__, wxMSW, unicode, wx-assertions-on, 
SWIG-1.3.29)Python Encoding: Default=mbcs  File=mbcswxPython Encoding: 
utf-8System Architecture: 32bit x86Byte order: littleFrozen: False#---- End 
System Information ----##---- Traceback Info ----#*** 11 June 2013 @ 11:19:18 
***Traceback (most recent call last):  File "GUI2Exe.py", line 2952, in 
OnProcessTimer    self.process.HandleProcessMessages()  File 
"V:\python\complie\GUI2Exe_0.5.3\Process.py", line 213, in 
HandleProcessMessages    self.ReadStream(istream, 0, processEnded)  File 
"V:\python\complie\GUI2Exe_0.5.3\Process.py", line 255, in ReadStream    if 
stream.CanRead():AttributeError: NoneType object has no attribute CanRead*** 11 
June 2013 @ 11:19:25 ***Traceback (most recent call last):  File "GUI2Exe.py", 
line 2952, in OnProcessTimer    self.process.HandleProcessMessages()  File 
"V:\python\complie\GUI2Exe_0.5.3\Process.py", line 213, in 
HandleProcessMessages    self.ReadStream(istream, 0, processEnded)  File 
"V:\python\complie\GUI2Exe_0.5.3\Process.py", line 255, in ReadStream    if 
stream.CanRead():AttributeError: NoneType object has no attribute CanRead*** 11 
June 2013 @ 11:19:28 ***Traceback (most recent call last):  File "GUI2Exe.py", 
line 2952, in OnProcessTimer    self.process.HandleProcessMessages()  File 
"V:\python\complie\GUI2Exe_0.5.3\Process.py", line 213, in 
HandleProcessMessages    self.ReadStream(istream, 0, processEnded)  File 
"V:\python\complie\GUI2Exe_0.5.3\Process.py", line 255, in ReadStream    if 
stream.CanRead():AttributeError: NoneType object has no attribute CanRead*** 11 
June 2013 @ 11:19:29 ***Traceback (most recent call last

Original issue reported on code.google.com by [email protected] on 11 Jun 2013 at 4:21

Error compiling script which used to compile well

What steps will reproduce the problem?
1. Compile a script using PY2EXE
2.
3.

What is the expected output? What do you see instead?
I expect the compiler to create an exe as I have done before with the same 
script. Instead it gives the error as shown in the attached screenshot.

What version of GUI2Exe, Python and wxPython are you using? On what operating 
system?
0.51 on Wondows XP. This was working before.

Please provide any additional information below.
The error is everytime in C:\temp\tmpxxxxxx.py with xxxxxx being different 
characters everytime I run the compiler.


Original issue reported on code.google.com by [email protected] on 13 Mar 2012 at 7:30

Attachments:

'GUI2Exe' object has no attribute '_ribbon'

Running Gui2exe on a recent Linux system gave this error:

$ python GUI2Exe.py
Traceback (most recent call last):
  File "/usr/lib/python2.6/site-packages/wx-2.8-gtk2-unicode/wx/_misc.py",
line 1342, in Notify
    self.notify()
  File "/usr/lib/python2.6/site-packages/wx-2.8-gtk2-unicode/wx/_core.py",
line 14676, in Notify
    self.result = self.callable(*self.args, **self.kwargs)
  File "GUI2Exe.py", line 3874, in ShowMain
    frame = GUI2Exe(None, -1, "", size=(xvideo, yvideo))
  File "GUI2Exe.py", line 406, in __init__
    self.SetAllFlags()
  File "GUI2Exe.py", line 1312, in SetAllFlags
    self.ManageMenuBar(useCustom, fmStyle, ribbonStyle)
  File "GUI2Exe.py", line 1191, in ManageMenuBar
    ribbon = self._mgr.GetPane(self._ribbon)
AttributeError: 'GUI2Exe' object has no attribute '_ribbon'

Original issue reported on code.google.com by [email protected] on 15 Dec 2009 at 5:34

GUI2EXE Fails To Save Project!

What steps will reproduce the problem?
1. Using Auto Save
2. Manulayy Saving The Project

What is the expected output? What do you see instead?
 GUI2EXE fails to save the projects. I have auto sve turned on, but when that didn't save my project I started saving them manually by press ctrl + s . Doing this still does not save my project. This is  a large project that uses more than 20 modules and several files to be compiled. I can't keep adding them each time I need to compile.


What version of GUI2Exe, Python and wxPython are you using? On what operating 
system?
 Windows XP Pro, GUI2EXE 0.5.0, Python 2.6


Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 24 Oct 2010 at 6:06

Wishlish: support for folders in 'data files'

What steps will reproduce the problem?
1. select recursive directory add
2. add a folder
3. create some new files in the folder/sub-folders
4. the items from the folder in GUI2EXE's 'data files' list must be
deleted, because re-adding the same folder over and over will keep adding
to the data file list
5. After deleting the folder's "old" file list, and the user must re-add
the folder



What is the expected output? What do you see instead?

Adding a folder would 'glob' the files to process at compile time.
This means there is less manual configuration spent, as you just specify a
folder initially and its current contents will always be used. Useful for
help folders, translations and images/other resources.

What version of GUI2Exe, Python and wxPython are you using? On what
operating system?



Please provide any additional information below.

also, an option to disable the splash screen would be nice. regards,
Steven Sproat

Original issue reported on code.google.com by [email protected] on 27 Dec 2009 at 3:37

encoding

SyntaxError: Non-ASCII character '\xe5' in file E:\code\gui2exe\GUI2Exe.py on 
li
ne 2, but no encoding declared; see http://www.python.org/peps/pep-0263.html 
for
 details

里面使用了中文字符,没有在前面申明编码方式。


Original issue reported on code.google.com by cocobear.cn on 29 Jan 2010 at 3:36

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.