Rok Mandeljc
Rok Mandeljc
> Traceback (most recent call last): > File "cmt_appnge_copy.py", line 605, in > File "dash_callback.py", line 310, in wrap_func > File "dash\long_callback\managers__init__.py", line 83, in register_func > File "dash\long_callback\managers__init__.py", line...
> All works well > I've been using it the last month or so and it's working really well. This change works well for the `PySide6` issue, but only because...
In addition to solving the PySide6 6.3 problem, this will likely silence the slew of missing DLL warnings that people tend to get on Windows when using `torch` (e.g., #7024)...
Hmm, doesn't seem to work if program name contains spaces. E.g., trying to freeze `program with spaces.py`. I'll take a closer look in the evening.
I don't think we can actually fully solve/fix this with the spec file design we currently have. There are in fact two problematic cases: * there are packages that are...
This is happening because `loky` (the default backend for `joblib`) is not supported in PyInstaller-frozen application. Therefore, the spawned subprocesses end up running your main code, where argument parser fails...
This change is causing dependencies of dependencies to be missed. That's the cause for failures on macOS - we're failing to pick up `libgfortran.3.dylib`, which is a dependency of `libopenblas.0.dylib`...
Hmm, well, as far as I can tell, this is a limitation of the Tk toolkit; its `winfo` `screenwidth`/`screenheight` returns the combined desktop size. There doesn't seem to be a...
Regarding tkinter issue... This may depend on installation, but on the test system I have (Catalina with Python 3.7.6 from python.org), [_find_tcl_tk() call](https://github.com/pyinstaller/pyinstaller/blob/655647e8eb8ba8ad864a0c4ac418d08c23c086b2/PyInstaller/hooks/hook-_tkinter.py#L214) comes up empty. It seems to use...
At this point, I'm starting to think that breaking the compatibility and having `--add-data` and `--add-binary` accept two arguments (`nargs=2`) might be the sanest thing to do. Painful, but sanest...