LeventeHunyadi
Instructure
Instructure

Officially, Instructure supports Windows 11 for DAP client library but not Windows 10. You need to switch to one of the supported operating systems.

At a more technical level, the issue seems to originate from an open-source library that DAP client library uses called tsv2py. This library is responsible for efficiently parsing text data (specifically, tab-separated format) into Python in-memory data structures, which are then sent to the database driver. (Text manipulation done directly in Python is generally slow, and can easily become the bottleneck, this library brings approx. 5x speed improvement.) The latest version of this library published to PyPI is built for Windows 10.0.19045 (i.e. 2022 update of Windows 10) but if you have a less recent version of Windows, the library may fail (and hence no data be inserted/updated). Recently, we have contributed a patch to target Windows 8.1 and later for this library, which would be included in a future release. Likewise, this library uses AVX2 CPU vector instructions (SIMD, or single instruction, multiple data) on Intel/AMD machines. If you have an old machine, which lacks these CPU instructions, you might run into issues. All modern hardware for Windows has these instructions.

View solution in original post

Who Me Too'd this solution