SpiNNakerManchester / SpiNNakerManchester.github.io

Organization Pages, Documentation and Issues
http://spinnakermanchester.github.io/
Apache License 2.0
12 stars 7 forks source link

UnicodeDecodeError #1

Closed qian-liu closed 9 years ago

qian-liu commented 9 years ago

UnicodeDecodeError: 'ascii' codec can't decode byte 0xb0 in position 1: ordinal not in range(128)

To solve it, Edit C:\Python27\Lib\mimetypes.py this file: Add these codes if sys.getdefaultencoding() != 'gbk': reload(sys) sys.setdefaultencoding('gbk') before the following line default_encoding = sys.getdefaultencoding()

alan-stokes commented 9 years ago

your solution was added to the trouble shooting guide now placed at the end of the installation guides.

thank you for reporting this and giving us the solution.

Alan