Rok Mandeljc

Results 553 comments of Rok Mandeljc

What is being asked for in the original request can be readily achieved using environment variables, though: [example](https://github.com/pyinstaller/pyinstaller/blob/develop/tests/functional/specs/pyi_osx_aevent_handling_carbon.spec). (And as a sidenote, passing `--onefile` or `--onedir` on CLI when building...

> > I suppose one could pass whole custom/additional command-line string via an environment variable, split it in the spec file using shlex.split() and feed it to argparse, without having...

> Do you know hoy I could use the "--exclude-module" flag to get rid of the PyQt5 modules that I am not using? PyInstaller is trying to include only the...

The warning/error messages seem to imply that the crash is caused by a duplicated shared library: `/Users/jesse/Desktop/projects/wx_fix/pyinstaller/dist/test_aui.app/Contents/MacOS/libwx_osx_cocoau_core-3.0.dylib` and `/Users/jesse/Desktop/projects/wx_fix/pyinstaller/dist/test_aui.app/Contents/MacOS/libwx_osx_cocoau_core-3.0.0.4.0.dylib` Can you try manually removing one of them? And try to...

> Those messages might be a red herring. You get the same error messages without the AUI code (i.e. comment it out in the sample above), but the binary runs...

If you use a package that makes use of `torch`'s JIT, you need to collect the sources of that package, too. In this case, those of `timm` package.

Also, I suspect this snippet: > ``` > def collect_source_files(modules): > datas = [] > for module in modules: > source = inspect.getsourcefile(module) > dest = f"src.{module.__name__}" # use "src."...

> > If you use a package that makes use of `torch`'s JIT, you need to collect the sources of that package, too. In this case, those of `timm` package....

Is it 100% identical error as the one you've originally reported, or a slight variation thereof?

> It's 100% identical error that I am getting. You can regenerate it by running **test.py** and **test.spec** which I mentioned earlier. Well yeah, but the example you provided is...