blob: 515b9e7c9be1fd3aaeca2bf5c98fcd017926daff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
Should you installed the py36 flavor of this package and are presented to
the following error:
RuntimeError: Click will abort further execution because Python 3 was
configured to use ASCII as encoding for the environment. Either switch
to Python 2 or consult the Python 3 section of the docs for
mitigation steps.
It's an issue related to Click, not muacrypt. You can workaround that by
exporting LC_ALL and LANG variables, using your locale settings and
running muacrypt again:
# setenv LC_ALL en_US.UTF-8
# setenv LANG en_US.UTF-8
# muacrypt
Read https://click.palletsprojects.com/en/7.x/python3/ for more details.
|