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
if there is any chinese character in steamvr.vrsettings, it raises an exception like this.
exception:
Traceback (most recent call last): File "installer.py", line 60, in <module> File "json\__init__.py", line 293, in load UnicodeDecodeError: 'gbk' codec can't decode byte 0xac in position 1031: illegal multibyte sequence [13936] Failed to execute script installer
the exception occour on line 59 in installer.py
with open(config) as f: config_data = load(f)
we need change these lines to fix it as below
with open(config,encoding="utf-8") as f: config_data = load(f)
The text was updated successfully, but these errors were encountered:
pls also update mediapipe project
Sorry, something went wrong.
No branches or pull requests
if there is any chinese character in steamvr.vrsettings, it raises an exception like this.
exception:
the exception occour on line 59 in installer.py
we need change these lines to fix it as below
The text was updated successfully, but these errors were encountered: