When I tried to install Pillow using pip-3.3, I got an error instead, see the traceback below.
File "/home/samsun/workspace/python/chat_environment/lib/python3.3/site-packages/pip/req.py", line 297, in egg_info_data
data = fp.read()
File "/home/samsun/workspace/python/chat_environment/lib/python3.3/encodings/ascii.py", line 26, in decode
return codecs.ascii_decode(input, self.errors)[0]
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 14439: ordinal not in range(128)
I think the traceback is telling me some characters in the file are Unicode, but Python is using ASCII to read the file.
I want to change python3.3 filesystemencoding to resolve this error; is there a way to change the default filesystemencoding?