-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
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
UnicodeDecodeError #3
Comments
Getting the same error. Any Solution? |
same error! waiting for solutions! |
It looks like the error comes from the python3.x , in my ubuntu16.04 the default python version is 2.7, and I can run compress.py without error, maybe you can try creating a new environment with python2.7 and run again. |
Hi,
I got this problem
Traceback (most recent call last):
File "compress.py", line 47, in
main(sys.argv[1:])
File "compress.py", line 39, in main
data = decompress(features_path, 'd', 8, feature_len)
File "compress.py", line 22, in decompress
byte_array = f.read()
File "/home/yzl/anaconda3/lib/python3.6/codecs.py", line 321, in decode
(result, consumed) = self._buffer_decode(data, self.errors, final)
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xe0 in position 3: invalid continuation byte
how could I do?
thanks !
The text was updated successfully, but these errors were encountered: