We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I got an error using example:
UnicodeDecodeError: 'charmap' codec can't decode byte 0x90 in position 218: character maps to <undefined>
It seems windows uses CP1251 encoding by default. I changed the line with open(path, 'r') as f: to with open(path, 'r', encoding='utf8') as f:
with open(path, 'r') as f:
with open(path, 'r', encoding='utf8') as f:
in edgetpumodel.py get_names()
After it the example starts works fine :) This is the only issue on Windows, hope this fix will be committed. I have no rights to open PR on my own.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I got an error using example:
UnicodeDecodeError: 'charmap' codec can't decode byte 0x90 in position 218: character maps to <undefined>
It seems windows uses CP1251 encoding by default. I changed the line
with open(path, 'r') as f:
to
with open(path, 'r', encoding='utf8') as f:
in edgetpumodel.py get_names()
After it the example starts works fine :) This is the only issue on Windows, hope this fix will be committed. I have no rights to open PR on my own.
The text was updated successfully, but these errors were encountered: