Closed wtianlu closed 3 years ago
Works in my machine with Linux mint and an AMD CPU.
Might be linked: https://stackoverflow.com/questions/59020503/intel-mkl-error-preventing-me-importing-scipy-in-python
You can try to update numpy? Or reinstall python on your windows machine? Did you try running it from the anaconda prompt?
Closing this because of inactivity.
During loading, pyxdf.load_xdf automatically tries to dejitter the timestamps. This requires a linear regression on the measured timestamps. This step apparently failed. Error message: Error reading chunk length Traceback (most recent call last): File "/home/tianlu/anaconda3/lib/python3.8/site-packages/pyxdf/pyxdf.py", line 237, in load_xdf chunklen = _read_varlen_int(f) File "/home/tianlu/anaconda3/lib/python3.8/site-packages/pyxdf/pyxdf.py", line 487, in _read_varlen_int raise RuntimeError("invalid variable-length integer encountered.") RuntimeError: invalid variable-length integer encountered. got zero-length chunk, scanning forward to next boundary chunk.
Loading the file with pyxdf.load_xdf(filename=str(filename), dejitter_timestamps=False) works.
Thanks Robert! :smile: