I get the error: "UnicodeDecodeError: 'ascii' codec can't decode byte 0xa0 in position 7338: ordinal not in range(128)" once I try to run the program after I freeze my script with cx_freeze. If I run the Python 3 script normally it runs fine, but only after I freeze it and try to run the executable does it give me this error. I would post my code, but I don't know exactly what parts to post so if there are any certain parts that will help just let me know and I will post them, otherwise it seems like I have had this problem once before and solved it, but it has been a while and I can't remember what exactly the problem was or how I fixed it so any help or pointers to get me going in the right direction will help greatly. Thanks in advance.
|
|
||||
|
|
Tell us exactly which version of Python on what platform. Show the full traceback that you get when the error happens. Look at it yourself. What is the last line of your code that appears? What do you think is the Note that automatic conversion of Update after further info in comments. Excel does not save csv files in ASCII. It saves them in what MS calls "the ANSI codepage", which varies by locale. If you don't know what yours is, it is probably
If Excel did save files in ASCII, your offending Saving your files in You don't need to post all four of your csv files on the web. Just run this little script (untested):
The Probably you will need to ask on the cx_freeze mailing list to get an answer to why this error is happening. They will want to know the full traceback. Get some practice -- show it here. By the way, "offset 7338" is rather large -- do you expect lines that long in your csv file? Perhaps something is reading all of your file ... |
|||||||
|
|
That error itself indicates that you have a character in a python string that isn't a normal ASCII character:
I certainly don't know why this would only happen when a script is frozen. You could wrap the whole script in a EDIT: here's how that might look
|
|||||
|
|
Use Look also: http://docs.python.org/release/3.0.1/howto/unicode.html#unicode-howto |
|||||||||||
|