LexiconCode

Results 282 comments of LexiconCode

> check whether by chance fix to #86 helps (I doubt it) Unfortunately not > with a list of specific imports - that is replace the glob (*) with individual...

I understand your pain about corporate environments. Administrator privileges as required to provide write access to the two following files `Nsapps.ini` or `nssystem.ini`. `Nsapps.ini` the installer appends the following which...

Looks like I'm going to have to go all the way and install the Windows development environment https://docs.microsoft.com/en-us/archive/blogs/junfeng/debugging-loadlibrary-failures https://developer.microsoft.com/en-us/windows/downloads/windows-sdk/ ``` ."C:\Program Files (x86)\Windows Kits\10\Debuggers\x86\gflags.exe" -i "C:\Program Files (x86)\Python310-32\python.exe" +sls ."C:\Program...

Another interesting tidbit here regarding the Python environment Installing through Python through the natlink installer in looking at were Python packages are being stored. ``` PS C:\Users\Main> ."C:\Program Files (x86)\Python310-32\python.exe"...

> i am not following this closely, so this is just something to consider. we ran into problems importing natlink.dll when there was a folder or module named natlink. so...

Same issues with PyQt5 ``` _import_module_from_path loader.exec_module(module) File "", line 883, in exec_module File "", line 241, in _call_with_frames_removed File "C:\Users\MainLaptop\Documents\_x.py", line 1, in from PyQt5 import QtWidgets, QtCore, QtGui...

> pip list Package Version Editable project location ------------------ --------- -------------------------------------------- appdirs 1.4.4 attrdict 2.0.1 CacheControl 0.12.11 cachy 0.3.0 certifi 2021.10.8 charset-normalizer 2.0.12 cleo 0.8.1 clikit 0.6.2 comtypes 1.1.11 crashtest...

FYI: Doing a little research based on https://stackoverflow.com/questions/44140586/imagegrab-grab-method-is-too-slow/51130619 The idea here is to see what kind of penalty there is for taking a screenshot based on pixels and the performance...

For ImageGrab all_screens=True on two monitors (3840, 2160) and (2560, 1440) ``` def pil_test() : average = time() from PIL import ImageGrab for _ in range(5): printscreen = np.array(ImageGrab.grab(all_screens=True)) average_ms...

> I will note that it's another matter entirely to support multiple monitors in the `gaze-ocr` package, because you would need eye tracking support across all screens, which Tobii does...