[PyInstaller] Re: How do I specify a custom output direcory

2020-04-06 Thread Rob V
Hello - thanks the --workpath and --distpath worked great and are now working in my batch script. Thanks Guys!! On Friday, April 3, 2020 at 12:19:27 AM UTC-7, Rob V wrote: > > Hello, > > How do I specify an output directory for the dist and build folders? I'd > like to have one output

[PyInstaller] Re: How do I specify a custom output direcory

2020-04-05 Thread Amir Rossert
Hi Rob, You can use the --distpath and --workpath options to controll the dist and build path. Here is the doc for all the available options: https://pyinstaller.readthedocs.io/en/stable/usage.html#general-options On Saturday, April 4, 2020 at 12:14:53 PM UTC+3, Rob V wrote: > > So there is no

Re: [PyInstaller] Re: How do I specify a custom output direcory

2020-04-05 Thread Rob V
Ok I could try that. I'm producing the dist and build folders with many files in dust not just a single executable. I do this because I read somewhere the application runs faster. It would be nice to have a single outputs directory somewhere besides where pyinstaller automatically puts the

Re: [PyInstaller] Re: How do I specify a custom output direcory

2020-04-04 Thread Eric Fahlgren
Did you try 'pyinstaller -h'? I see: --distpath DIRWhere to put the bundled app (default: .\dist) --workpath WORKPATH Where to put all the temporary work files, .log, .pyz and etc. (default: .\build) On Sat, Apr 4, 2020 at 2:14 AM Rob V wrote: > So there

[PyInstaller] Re: How do I specify a custom output direcory

2020-04-04 Thread Rob V
So there is no way to tell pyinstaller to output to a specific directory? On Friday, April 3, 2020 at 12:34:52 PM UTC-7, abhishek bhatta wrote: > > I usually prefer making a batch/shell script to copy the file after > creating the executable. > > On Friday, April 3, 2020 at 12:49:27 PM UTC+5:30,

[PyInstaller] Re: How do I specify a custom output direcory

2020-04-03 Thread abhishek bhatta
I usually prefer making a batch/shell script to copy the file after creating the executable. On Friday, April 3, 2020 at 12:49:27 PM UTC+5:30, Rob V wrote: > > Hello, > > How do I specify an output directory for the dist and build folders? I'd > like to have one output directory containing