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
I got an error message "UnicodeDecodeError: 'cp949' codec can't decode byte 0xe2 in position 3855: illegal multibyte sequence." This case is solved by adding encoding="UTF-8" when opening file.
(i.e., open(version_path, encoding="UTF8"))
Same as issues occurred at line#37.
The text was updated successfully, but these errors were encountered:
Thanks for reporting and for the suggestion @chaeunl ! Please note that at the moment we don't fully support Windows builds, and it will likely require some changes to the cmake files in order to compile correctly - full Windows support is on the pipeline, though (I have opened #12 for easier keeping track of the progress).
Addressed the encoding issue via #13. For reference and for users that might not be using the latest master branch, using the PYTHONUTF8 environment variable for setting the locale might be a user-side alternative in similar cases - again, thanks @chaeunl !
aihwkit/setup.py
Line 29 in f6b140c
I got an error message "UnicodeDecodeError: 'cp949' codec can't decode byte 0xe2 in position 3855: illegal multibyte sequence." This case is solved by adding encoding="UTF-8" when opening file.
(i.e., open(version_path, encoding="UTF8"))
Same as issues occurred at line#37.
The text was updated successfully, but these errors were encountered: