Quantcast
Channel: Python: how to specify output folders in Pyinstaller .spec file - Stack Overflow
Browsing latest articles
Browse All 3 View Live

Answer by TocToc for Python: how to specify output folders in Pyinstaller...

As Jonas Gröger pointed out you can indeed do:import PyInstaller.configPyInstaller.config.CONF['workpath'] = "./my_build_directory"# ... rest of spec fileHowever the documentation in the config module...

View Article



Answer by Jayaprakash for Python: how to specify output folders in...

Pyinstaller spec/build/dist location paths can be configured as part of pyinstaller command. Refer below examplepyinstaller --specpath /opt/bk/spec --distpath /opt/bk/dist --workpath /opt/bk/build...

View Article

Python: how to specify output folders in Pyinstaller .spec file

I am using python 3.5 and pyinstaller version 3.1.1. I have specified a .spec file, called SCADAsync_spec.spec, as follows:block_cipher = Nonea = Analysis(['SCADAsync.py'],...

View Article
Browsing latest articles
Browse All 3 View Live




Latest Images