You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If it is enough to replace all unencodable characters with ? in your case then you could set [PYTHONIOENCODING envvar](https://docs.python.org/3/using/cmdline.html#envvar-PYTHONIOENCODING):
T:\> set PYTHONIOENCODING=:replace
T:\> python3 -c "print(u'[\N{EURO SIGN}]')"
[?]
In Python 3.6+, the encoding specified by PYTHONIOENCODING envvar is ignored for interactive console buffers unless PYTHONLEGACYWINDOWSIOENCODING envvar is set to a non-empty string.
ran this in the root of the project:
got this crash:
using
chcp 65001
before runningpoetry run python -m gtnh.cli.download_release nightly
fixes the issueThe text was updated successfully, but these errors were encountered: