Rok Mandeljc

Results 553 comments of Rok Mandeljc

The hook does not really support conda-installed `torch`. Because in that case, CUDA and cuDNN libs are not part of the `torch` package, and would need to be collected from...

Hmm, actually, looks like cuDNN libs are part of `torch` conda package (installed as `conda install pytorch==1.13.1 torchvision==0.14.1 torchaudio==0.13.1 pytorch-cuda=11.7 -c pytorch -c nvidia` as per https://pytorch.org/get-started/previous-versions/): ``` $ ls...

This looks like external cuDNN (in `/home/zhang/cuda/lib64`) being mixed with cuDNN that was collected into frozen application. Is `libcudnn_cnn_train.so.8` collected in `_internal/torch/libs`? And is there a symbolic link to that...

> QWidget: Must construct a QApplication before a QWidget One of the modules/packages we import during during dynamic libraries search seems to be instantiating a QWidget during its initialization. To...

Hmm, if everything down to `fontTools.misc.loggingTools` ended up automatically collected, I fail to see why we would fail to pick up `timeit` from stdlib. Does it make any difference if...

> `ImportError: cannot import name 'QGlPicamera2' from 'picamera2.previews.qt'` If `QGlPicamera2` cannot be imported from `picamera2.previews.qt`, then this import failed: https://github.com/raspberrypi/picamera2/blob/0759b0ec3252dc665043bff77e363b02e0937f5d/picamera2/previews/qt.py#L12-L15 ``` try: from .q_gl_picamera2 import QGlPicamera2 except Exception: _log.warning("OpenGL will...

Try adding `--hiddenimport OpenGL.platform.egl` to your PyInstaller command. Or, if that doesn't help, even `--collect-submodules OpenGL`.

Is it really worth moving those files around?

I suppose split between stdlib and 3rd party libraries would make sense if we wanted to split the CI run in two steps. Otherwise, I don't see much benefit in...