Rok Mandeljc
Rok Mandeljc
This happens because `osgeo/__init__.py` added `C:\Users\PR46283\AppData\Local\anaconda3\Library\bin` to DLL search path: > in osgeo init adding dll: C:\Users\PR46283\AppData\Local\anaconda3\Library\bin (so it was not only QGIS installation that is problematic, but also an...
In contrast to #8447, which was a run-time error, this one seems to be a build-time. Specifically, it seems to happen during package imports prior to binary dependency analysis, so...
You could also try to add a `print(package)` before this call https://github.com/pyinstaller/pyinstaller/blob/2ebca31568e4d84371845a9358245aa4b2de0337/PyInstaller/building/build_main.py#L286 to see which package is causing MPI initialization. But actually, does this error abort the build or not?
I think I'd prefer if users that want to avoid collecting a package pulled in under the `if typing.TYPE_CHECKING` conditional did so using the existing exclusion mechanism - i.e., either...
> Regarding @rokm's comment: To be able to use the existing exclusion mechanisms, the user would need to _know_ that the excluded module is indeed only used in 'if TYPE_CHECKING'...
> There are older versions of Windows 10 that don't have UCRT (although you can install it). Isn't that Windows 8/8.1? According to Microsoft, "The UCRT is now a Windows...
The code in `"libsvm\svm.py", line 45` is trying to load shared library (judging by the line number, that's probably [libsvm-official](https://pypi.org/project/libsvm-official/) with [corresponding code](https://github.com/cjlin1/libsvm/blob/ab224ad29ba79b884d4e84de30049d18375fd0f1/python/libsvm/svm.py#L27-L45) as opposed to [libsvm](https://pypi.org/project/libsvm/) with [corresponding code](https://github.com/ocampor/libsvm/blob/master/libsvm/svm.py#L28-L33),...
Anyway, I'm moving this to contributed hooks repository; if we were to implement hook for `libsvm`, it would be there.
> Additionally, in order to get my code working on Solaris I had to override pyi_rth_multiprocessing.py with a blank file via the hooks mechanism in order to stop it from...
> ``` > File "PyInstaller/hooks/rthooks/pyi_rth_multiprocessing.py", line 95, in _pyi_rthook > ``` Hmmm, what version of PyInstaller was that? [Contemporary versions of `pyi_rth_multiprocessing.py` have only 55 lines.](https://github.com/pyinstaller/pyinstaller/blob/v6.14.1/PyInstaller/hooks/rthooks/pyi_rth_multiprocessing.py) But the version found...