Pyinstaller users, in what current working directory do you usually run it?
There's two (at least) ways of running pyinstaller. Method 1 (from the docs)

    cd /path/to/pyinstaller
    python pyinstaller.py --options... /path/to/project/src/yourscript.py

This creates yourscript/build, yourscript/dist, and yourscript/yourscript.spec
in the  /path/to/pyinstaller directory.

Or, method B:

    cd /path/to/project/src/
    python /path/to/pyinstaller/pyinstaller.py --options... yourscript.py

This creates build, dist, and yourscript.spec in /path/to/project/src/
I'd like to know which method is most popular (or if there's another way)?

In either case, do you also use an alias, shell script, or makefile to
shorten the command?

Thanks,
Dave Cortesi

-- 
You received this message because you are subscribed to the Google Groups 
"PyInstaller" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/pyinstaller?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to