Re: [PyInstaller] Executable does not use additional files (config files)

2014-11-19 Thread Jones, Bryan
Jose, To access file relative to the frozen version of your app, take a look at; http://htmlpreview.github.io/?https://github.com/pyinstaller/pyinstaller/blob/develop/doc/Manual.html#accessing-data-files That will probably fix your problem. On Thu, Nov 13, 2014 at 8:07 AM, Jose Luis Da

Re: [PyInstaller] ELI5 - python3 branch in local clone?

2015-09-10 Thread Jones, Bryan
Personally, I'm a fan of SmartGit. It has a MUCH better and more funcitonal GUI than git gui / gitk, and is still free for open-source projects. On Thu, Sep 10, 2015 at 4:09 AM, Hartmut Goebel wrote: > Am 08.09.2015 um 23:55 schrieb David Cortesi: > > I want to work

Re: [PyInstaller] Problem building Qt app for Windows with pyinstaller

2016-01-13 Thread Jones, Bryan
Dave, I've built my Windows application using Py3.4 64 bit, Qt5.5, on a Windows 8 PC with no problems. What's your configuration? Have you read through https://github.com/pyinstaller/pyinstaller/wiki/How-to-Report-Bugs? Bryan On Tue, Jan 12, 2016 at 6:53 PM, wrote: >

Re: [PyInstaller] Examples of projects using PyInstaller

2016-01-29 Thread Jones, Bryan
A few ideas on how to do this: > Hmm, is there a way to capture data file requirements as command-line options? Yes, mostly: write a hook file for your project that defines the appropriate datas, then pass the path to your hook file on the command line. > It would be sweet if in the future

Re: [PyInstaller] Preparing release 3.2

2016-05-02 Thread Jones, Bryan
Nothing from my side. I have a few more patches coming, but they're not critical for the release. On Sun, May 1, 2016 at 6:45 AM, Hartmut Goebel wrote: > Hi, > > it's time to release 3.2. I can take care of it, but am unsure if I'll > make it prior to 2016-05-11. > >

Re: [PyInstaller] Python, Windows and no console environments

2017-03-27 Thread Jones, Bryan
Thanks, fixed! On Mon, Mar 20, 2017 at 3:40 PM, Coyot Linden (Glenn Glazer) < co...@lindenlab.com> wrote: > On 3/20/17 12:01, Coyot Linden (Glenn Glazer) wrote: > > On 3/16/17 10:07, Jones, Bryan wrote: > > This link might be relevant -- https://github.com/ > pyinstaller

Re: [PyInstaller] Python, Windows and no console environments

2017-03-31 Thread Jones, Bryan
nside the key. Since subprocess doesn't know > what 'stdout:', this causes its init() to throw a type exception. > > Best, > > coyot > > On 3/27/17 14:48, Jones, Bryan wrote: > > Thanks, fixed! > > On Mon, Mar 20, 2017 at 3:40 PM, Coyot Linden (Glenn Glazer) < > co.

Re: [PyInstaller] Python, Windows and no console environments

2017-03-16 Thread Jones, Bryan
This link might be relevant -- https://github.com/pyinstaller/pyinstaller/wiki/Recipe-subprocess Have you tried those suggestions? On Thu, Mar 16, 2017 at 10:47 AM, Coyot Linden (Glenn Glazer) < co...@lindenlab.com> wrote: > We discovered that code which ran perfectly correctly by executing the

Re: [PyInstaller] Python, Windows and no console environments

2017-03-16 Thread Jones, Bryan
eve > > On 16/03/2017 17:24, Coyot Linden (Glenn Glazer) wrote: > > No, I hadn't seen that. > > > > Thanks for the pointer! > > > > Best, > > > > coyot > > > > > > On 3/16/17 10:07, Jones, Bryan wrote: > >> This

Re: [PyInstaller] How to include QtWebEngineProcess.app?

2018-05-09 Thread Jones, Bryan
Glenn, I have absolutely no idea how to get QtWebEngineProcess.app to work with Pyinstaller. I struggled with this for quite a while (see https://github.com/pyinstaller/pyinstaller/pull/3233), but have no idea how to make that work. Any ideas are welcome! Bryan On Wed, May 9, 2018 at 12:13 AM,

Re: [PyInstaller] Excluding PyQt5 components

2018-05-10 Thread Jones, Bryan
Glenn, I don't know, unfortunately. The "new and improved" system now packages translations and does a much better job of both finding plugins and tracking Qt library dependencies to include everything needed. So...the result is much larger. Based on last few lines of

Re: [PyInstaller] PyQt5 QWebEngine on OSX

2018-05-11 Thread Jones, Bryan
A follow-up: the Info.plist builder is at https://github.com/pyinstaller/pyinstaller/blob/develop/PyInstaller/building/osx.py. Somehow, a hook would need to provide info to that. On Fri, May 11, 2018 at 7:58 AM, Jones, Bryan <bjo...@ece.msstate.edu> wrote: > This would make a good issue

Re: [PyInstaller] How to make the test framework run a .app on OSX

2018-05-11 Thread Jones, Bryan
I put my ideas about this in your PR. On Thu, May 10, 2018 at 11:50 PM, Glenn Ramsey wrote: > Hi, > > I'm trying to figure out how to implement a test for PyQt5's QWebEngine on > OSX. > > The following test setup generates both a 'standard' executable and a .app > but > the

Re: [PyInstaller] PyQt5 QWebEngine on OSX

2018-05-11 Thread Jones, Bryan
This would make a good issue, since I don't know the answers and some discussion is probably required. Would you mind creating an issue? My questions: 1. Can --osx-bundle-identifier=org.qt-project.Qt.QtWebEngineCore be added programmatically in the QtWebEngineWidgets hook? 2. If so, what happens

Re: [PyInstaller] Change release numbering schema?

2018-08-31 Thread Jones, Bryan
I'm ambivalent about version numbers. However, I would like to see frequent releases of PyInstaller, instead of large releases every now and then. I think this goes back to adopting tools to make the release process easier. On Fri, Aug 31, 2018 at 6:06 AM Hartmut Goebel wrote: > Hi all, > >

Re: [PyInstaller] json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)

2019-04-04 Thread Jones, Bryan
Use the development version, which contains a fix for this. On Thu, Apr 4, 2019 at 2:12 AM wrote: > hello all, > > I am facing difficulties in making .exe for .py. I am getting below error. > Error : > > 100 INFO: PyInstaller: 3.4 > 100 INFO: Python: 3.6.0 > 100 INFO: Platform:

Re: [PyInstaller] [Pyinstaller] How to save data files?

2019-02-19 Thread Jones, Bryan
It's not a bug/problem per se, it's the design of a onefile executable: it always unpacks into a temp directory, runs, then delete the temp dir. I'd suggest storing the file in a persistent location instead. I doubt you want to store it back into the packed program, since this involved modifying

Re: [PyInstaller] How to Report Bugs

2019-05-10 Thread Jones, Bryan
Michael, a) - github issues are correct. However, the volume of issues vs the people who answer is to out of balance, so don't expect much. b) - I got it. Bryan On Fri, May 10, 2019 at 2:42 AM Michael wrote: > a) a bit of feedback > > b) test the maillist is working > > re: a. - Just read

Re: [PyInstaller] How to prevent PyInstaller packaging unused modules

2019-11-07 Thread Jones, Bryan
Another approach: create a venv and install only what you want packaged. The Pyinstaller dependency analysis is conservative -- if there's a case where package x might be needed, it will be included. It can't tell what your use-case is. On Thu, Nov 7, 2019 at 6:11 AM Brendan Simon (eTRIX) <

Re: [PyInstaller] Re: pyinstaller interactive python console

2021-03-15 Thread Jones, Bryan
Use Conda. On Mon, Mar 15, 2021 at 8:39 AM Bachir Aoun wrote: > just fyi, what i did to solve the need for now is to read the file and > call exec. > this is a patch solution hoping that there is one that is more native to > pyinstaller. > > On Sunday, March 14, 2021 at 11:01:08 AM UTC-5