Re: [PyInstaller] Re: pyinstaller interactive python console

2021-03-15 Thread bwoodsend
If you just want an interactive console you can PyInstaller-ify: import code code.interact() That being said, you shouldn’t need to get people to install a C compiler. If you depend on libraries which are available as precompiled wheels then you should be able to run pip wheel library-name

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

[PyInstaller] Re: pyinstaller interactive python console

2021-03-15 Thread Bachir Aoun
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 Bachir Aoun wrote: > Hi, > I am trying to create a standalone for a scientific