Re: [PyInstaller] Loading External DLLs at Runtime

2019-06-13 Thread Ben Green
I just figured out the solution. I think PyInstaller was finding some of the DLLs, but not all of them. They likely depended on each other using relative paths, so they worked when I manually included all of them. When I didn't, however, the ones that were included tried to find the others via

[PyInstaller] Logger file rotation not working when python code (exe) started from windows service (python exe)

2019-06-13 Thread Nirvana
I am starting a python application (exe version created using pyInstaller) from a windows service (created in python, converted to exe using pyinstaller and installed using sc) but the log files generated by my application are not getting rotated. The code creates one log file and after it

Re: [PyInstaller] failed to create process

2019-06-13 Thread Hartmut Goebel
> Il giorno ven 31 mag 2019 alle ore 18:27 Bob Gailer > mailto:bgai...@gmail.com>> ha scritto: > > Unfortunately from my perspective the pyinstaller > documentation including error messages is sadly lacking. I > wish I could help here but all I can say is "you are

Re: [PyInstaller] Loading External DLLs at Runtime

2019-06-13 Thread Eric Fahlgren
Sorry, out of ideas. Maybe the PyInstaller dll loader is ignoring the modifications to PATH, but then why is it working for me? On Wed, Jun 12, 2019 at 7:27 AM Ben Green wrote: > Eric, > > I was setting the path in the main script right before I imported the SWIG > module. At your suggestion, I