Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Python > Re: problem compiling executable with py2exe

Reply
Thread Tools

Re: problem compiling executable with py2exe

 
 
Fredrik Lundh
Guest
Posts: n/a
 
      11-25-2005
"tim" <> wrote:

> I used py2exe before with more complex programs without any problem.
> Now, although my program works fine when I run it from PythonWin, it
> won't compile to an executable.


are you sure you're generating a console executable? your program needs
access to the console:

> d=raw_input('path')
> s=int(raw_input('maxsize (in bytes):'))


but

> Traceback (most recent call last):
> File "filesizechecker.py", line 4, in ?
> EOFError: EOF when reading a line


indicates that it doesn't have one.

</F>



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Create executable from executable with py2exe vedrandekovic@gmail.com Python 0 03-29-2008 12:23 PM
Running an Executable Before Executable JAR Jason Cavett Java 8 05-16-2007 07:14 PM
what is fast dynamically linked executable or statically linked executable ?how to decide? pratap C Programming 20 03-07-2007 04:46 AM
How can I run a c executable in pwd ,while the executable is in some other directory vishsid3@gmail.com C Programming 15 08-21-2006 06:04 AM
problem compiling executable with py2exe tim Python 0 11-25-2005 08:47 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57