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
apparently this tool or python or whatever doesnt really like locales that much and throws this error literally all the time, by just applying the C.UTF-8 locale for the program this wouldnt happen all the time.
Traceback (most recent call last):
File "/home/my1/.local/bin/solo", line 11, in <module>
sys.exit(solo_cli())
File "/home/my1/.local/lib/python3.6/site-packages/click/core.py", line 764, in __call__
return self.main(*args, **kwargs)
File "/home/my1/.local/lib/python3.6/site-packages/click/core.py", line 696, in main
_verify_python3_env()
File "/home/my1/.local/lib/python3.6/site-packages/click/_unicodefun.py", line 124, in _verify_python3_env
' mitigation steps.' + extra
RuntimeError: Click will abort further execution because Python 3 was configured to use ASCII as encoding for the environment. Consult https://click.palletsprojects.com/en/7.x/python3/ for mitigation steps.
This system supports the C.UTF-8 locale which is recommended.
You might be able to resolve your issue by exporting the
following environment variables:
export LC_ALL=C.UTF-8
export LANG=C.UTF-8
Click discovered that you exported a UTF-8 locale
but the locale system could not pick up from it because
it does not exist. The exported locale is "en_DE.UTF-8" but it
is not supported
This discussion was converted from issue #60 on June 18, 2020 07:33.
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
apparently this tool or python or whatever doesnt really like locales that much and throws this error literally all the time, by just applying the C.UTF-8 locale for the program this wouldnt happen all the time.
Beta Was this translation helpful? Give feedback.
All reactions