brandontrabucco / design-bench

Benchmarks for Model-Based Optimization
MIT License
80 stars 19 forks source link

Error while installing in certain system #14

Open seminumber opened 8 months ago

seminumber commented 8 months ago

Installing design-bench using pip failed in certain system due to setup.py:

F = 'README.md'
with open(F, 'r') as readme:
    LONG_DESCRIPTION = readme.read()

Here's the traceback:

      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:

brandontrabucco commented 7 months ago

Hello seminumber,

Were you able to resolve this installation problem?