Rok Mandeljc
Rok Mandeljc
Looks like `upx` requires the compression to gain at least 512 bytes, plus either 4096 bytes of absolute gain or 6.25% of relative gain (see [here](https://github.com/upx/upx/blob/devel/src/packer.cpp#L273-L299)). I suppose if the...
Does this also happen with executable build from the following simple program? ```python import nltk print(nltk) ``` --- I think the only place in [`pyi_rth_nltk.py`](https://github.com/pyinstaller/pyinstaller-hooks-contrib/blob/master/_pyinstaller_hooks_contrib/rthooks/pyi_rth_nltk.py) where execution could get stuck...
Try adding another print *before* `import nltk` in your program - then you'll likely see that it again ends up being stuck somewhere inside `nltk` initialization. > Is there anything...
What happens if you try to import `torch.distributed.optim` in python session? Does it also crash?
> > What happens if you try to import `torch.distributed.optim` in python session? Does it also crash? > > Yes, it will cause 'Segmentation fault (core dumped)' when I use...
If you rename the generated executable (or move it to some other location), does the icon show up? Last time we had a report like that, it turned out to...
> Mmh, it is happening the same to me with MacOs and moving from folder doesn't seem to change it... no errors or anything like that! and the image is...
Hmm, I think requiring a full Xcode installation makes this somewhat unfeasible; although if we made it a requirement, we could also stop shipping pre-built bootloaders for macOS... But having...
> Maybe just support the “.car” file format it produces? Developers have a onetime action to convert their icons, which seems reasonable since they need a Mac to run the...
Hmm, I think the static linking of python library into executable shouldn't really be a problem. I'm testing on Fedora, and we seem to pick up the right lib: ```...