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
Traceback (most recent call last):
File "<string>", line 2, in <module>
File "<pip-setuptools-caller>", line 34, in <module>
File "******\setup.py", line 7, in <module>
LONG_DESCRIPTION = readme.read()
UnicodeDecodeError: 'cp949' codec can't decode byte 0xe2 in position 1798: illegal multibyte sequence
It seems the special characters in README.md cause the problem.
Here are a few solutions that may resolve the issue:
Use the explicit long description instead of opening file
Use open() with argument errors='ignore' so that encoding errors are ignored instead of raising error
Use explicit encoding='...' that the file can be safely decoded in any platform and locale.
The text was updated successfully, but these errors were encountered:
Installing design-bench using pip failed in certain system due to
setup.py
:Here's the traceback:
It seems the special characters in
README.md
cause the problem.Here are a few solutions that may resolve the issue:
open()
with argumenterrors='ignore'
so that encoding errors are ignored instead of raising errorencoding='...'
that the file can be safely decoded in any platform and locale.The text was updated successfully, but these errors were encountered: