Rok Mandeljc

Results 553 comments of Rok Mandeljc

> What I cannot understand is, when I set `graphviz_bindir = '/usr/bin'` PyInstaller compiles successfully. But when I execute the application, it suddenly fails during pygraphviz steps. I could clearly...

> I tried adding them using `--add_binary` argument, but it still threw me this OS error. But I think that might be because I was adding the path to where...

I think the directory pointed to via `--runtime-tmpdir` must already exist, and we try to create a _MEIXXXX directory inside that. So this is probably failing because `/media/nvidia/Extreme_Pro/train_project/tmp` does not...

Hmmm, we fail to create symlink for libQt5Core-9e162752.so.5.15.0 for some reason. Is `/media/nvidia/Extreme_Pro/train_project/tmp` on a filesystem that does not support symbolic links? Can you try without `--runtime-tmpdir` to have the...

> The `/media/nvidia/Extreme_Pro/train_project/tmp` is an external hard drive as the Jetson module is not having enough space in /tmp folder. So is there any work around to this. If the...

Looks like the problem was introduced with addition of several `is_cygwin` checks in PyInstaller/building/utils.py, which trigger Windows-specific codepaths (with dependencies that are not available in cygwin environment). https://github.com/pyinstaller/pyinstaller/blob/2653893de7f6bfe05be30f9a60923987094e9091/PyInstaller/building/utils.py#L36 https://github.com/pyinstaller/pyinstaller/blob/2653893de7f6bfe05be30f9a60923987094e9091/PyInstaller/building/utils.py#L238 https://github.com/pyinstaller/pyinstaller/blob/2653893de7f6bfe05be30f9a60923987094e9091/PyInstaller/building/utils.py#L270...

Hmmm, yeah, I can see this in my test environment, too. The `ldd` process that keep spawning to analyze shared libraries seems to freeze when ran against some python extension...

I don't think this freeze is our fault, though. I can (non-deterministically) reproduce it with the following minimal example that runs ldd on all python extension modules: ```python import pathlib...

```bash #!/usr/bin/env bash DLL_DIR=/usr/lib/python3.9/lib-dynload for ext_file in ${DLL_DIR}/*.dll; do echo "----" echo "Scanning $ext_file" ldd $ext_file; echo "----" done ``` gets non-deterministically stuck as well. And when it does, I...

Hmm, looks like `vtk` is not really a package but a top-level module that is trying to emulate a package by importing and mapping all symbols from `vtkmodules.*`. So for...