Closed ldko closed 4 years ago
I can't replicate this issue, likely because my terminal locale setting is UTF-8. @ldko does setting your terminal's locale fix the issue for you?
Hi Barbara, I checked my locale, which looked like:
$ locale
LANG=en_US.UTF-8
LANGUAGE=
LC_CTYPE="C"
LC_NUMERIC="C"
LC_TIME="C"
LC_COLLATE="C"
LC_MONETARY="C"
LC_MESSAGES="C"
LC_PAPER="C"
LC_NAME="C"
LC_ADDRESS="C"
LC_TELEPHONE="C"
LC_MEASUREMENT="C"
LC_IDENTIFICATION="C"
LC_ALL=C
Setting LC_ALL
with the following removed the UnicodeDecodeError
:
$ export LC_ALL="en_US.UTF-8"
Thanks for the assistance @galgeek !
Trying to install
warcprox
in Python 3.5 or 3.6 (usingpip
or setup.py) I was hitting this error:I came across this while trying to make use of the Vagrantfile in brozzler.
This minor change fixes the
UnicodeDecodeError
for me.