Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 260 Bytes

troubleshooting.md

File metadata and controls

12 lines (9 loc) · 260 Bytes

If you get a charmap codec error make sure to run the following snippet in your command-line of choice:

chcp 65001

Or just put this line into your python scripts:

# coding=utf8

leave it as a comment. It'll still be parsed.