Skip to content

doc: add "Tips, Tricks & Troubleshooting" #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions doc/guides/tips-tricks-and-troubleshooting.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Tips, Tricks & Troubleshooting

## Tips

TBD

## Tricks

TDB

## Troubleshooting

1. Python crashes with `LookupError: unknown encoding: cp65001`
This is a known `Windows`/`python` bug ([_python bug_][1], [_stack overflow_][2]). The simplest solution is to set an
environment variable which tells `python` how to handle this situation:
```cmd
set PYTHONIOENCODING=UTF-8
```

[1]: http://bugs.python.org/issue1602 "python bug"
[2]: http://stackoverflow.com/questions/878972/windows-cmd-encoding-change-causes-python-crash "stack overflow"