Under the hood PyInstaller always uses a spec file. If you use PyInstaller --[some options] script.py it will generate script.spec (overwriting it if one already exists) that contains all your options, then call automatically PyInstaller script.spec.
If you want to use the spec to avoid having to list all your options every time (strongly recommended) then just call PyInstaller script.spec which will run it without modifying it. If you want to change your options then you modify the spec (it’s just a Python script). -- 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 view this discussion on the web visit https://groups.google.com/d/msgid/pyinstaller/444e42c2-b8f4-4310-aae6-8cbc0e28d408n%40googlegroups.com.
