Open IanOndo opened 5 hours ago
After successfully installing the program, I ran into an error while trying to run some tests using make test from the base directory. The error says:
make test
"UnicodeDecodeError: 'charmap' codec can't decode byte 0x9d in position 3722: character maps to " and occurs at the function read_dwc_terms().
read_dwc_terms()
Do you know what could have caused this error ?
Best,
Ian
I figured it out by replacing line 20 in the file "darwin_core.py": with path.open() by with path.open(encoding='utf8')
with path.open()
with path.open(encoding='utf8')
After successfully installing the program, I ran into an error while trying to run some tests using
make test
from the base directory. The error says:"UnicodeDecodeError: 'charmap' codec can't decode byte 0x9d in position 3722: character maps to" and occurs at the function
read_dwc_terms()
.Do you know what could have caused this error ?
Best,
Ian