-F, --onefile 创建一个文件绑定的可执行文件。 --specpath DIR 用于存储生成的规范文件的文件夹(默认值:当前目录) -n NAME, --name NAME 要分配给捆绑应用程序和规范文件的名称(默认值:第一个脚本的基本名称) --contents-directory CONTENTS_DIRECTORY仅对于onedir构建,指定所有支持文件(即。 除了可执行文件本...
usage: pyinstaller[-h][-v][-D][-F][--specpath DIR][-n NAME][--contents-directory CONTENTS_DIRECTORY][--add-data SOURCE:DEST][--add-binary SOURCE:DEST][-p DIR][--hidden-import MODULENAME][--collect-submodules MODULENAME][--collect-data MODULENAME][--collect-binaries MODULENAME][-...
-n NAME, --name NAME 为捆绑的应用程序和 spec 文件指定的名称(默认值:第一个脚本的名称)。 --contents-directory CONTENTS_DIRECTORY 仅适用于单文件夹构建。指定存放所有支持文件(即除可执行文件本身外的所有文件)的目录名称。使用 . 来重新启用旧的 onedir 布局,但不包含内容目录。
usage: pyinstaller [-h] [-v] [-D] [-F] [--specpath DIR] [-n NAME] [--contents-directory CONTENTS_DIRECTORY] [--add-data SOURCE:DEST] [--add-binary SOURCE:DEST] [-p DIR] [--hidden-import MODULENAME] [--collect-submodules MODULENAME] [--collect-data MODULENAME] [--collect-b...
—contents-directory仅对于 onedir 构建,指定将放置所有支持文件(即除可执行文件本身之外的所有文件)的目录名称。 —specpath存储生成的spec文件的文件夹(默认:当前目录) -n—name分配给捆绑应用程序(.exe)和规范文件(.spec)的名称(默认值:第一个脚本的基本名称) ...
pyi-build foobarzap.spec The output in the :file:`dist` folder will be all three apps, but the apps :file:`dist/bar/bar` and :file:`dist/zap/zap` will refer to the contents of :file:`dist/foo/` for shared dependencies. There are several multipackage examples in the |PyInstaller|...
摘记pyinstaller使⽤⾃定义spec 下⾯的是官⽹的⽂档,我们可以⽤⾃定义spec的⽅式把想要的⽂件打包到⽬标⽂件夹⾥⾯ 例如:我们在程序中⽤了⼀个图标 test.ico,如果我们只⽤ pyinstaller -w test.py 那⽣成的 dist/test/ ⽂件夹中是没有test.ico的,需要⼿动拷贝过去 如果...
我也是,谢了一个简单的格式化输出到txt的程序 居然有90M,惊呆了 ,期待有大神来科普下。
We read every piece of feedback, and take your input very seriously. Include my email address so I can be contacted Cancel Submit feedback Saved searches Use saved searches to filter your results more quickly Cancel Create saved search Sign in Sign up Reseting focus {...
I had to add the egg-info directory via the .spec file. My call to the Entrypoint function looks like this: a = Entrypoint( 'PrintIt', 'console_scripts', 'printit', datas=[('plugins/*.egg', 'plugins/'), ('../PrintIt.egg-info/*', 'PrintIt.egg-info/')]) Share Follow ...