使用以下选项运行 PyInstaller 打包文件: pyinstaller --onefile --add-data="data_files/data.txt;data_files" myScript.py 构建正确运行的myScript.exe,可以打开和读取打包的数据文件。 原文由 James 发布,翻译遵循 CC BY-SA 4.0 许可协议 有用 回复 撰写...
打成独立的文件:--onefile 上面是打包成了一个文件夹,发送给别人还是有点麻烦的。我们也可以直接打包成一个单独的文件: pyinstaller --add-data "058.txt:." --onefile 058.py 我们加了--onefile选项,表示打包成1个独立的文件。 运行后发现dist下面干净多了: 运行一下,也能成功执行: maishu@msmacbook ~ ...
pyinstaller --add-data "058.txt:." --onefile 058.py 我们加了--onefile选项,表示打包成1个独立的文件。 运行后发现dist下面干净多了: 运行一下,也能成功执行: maishu@msmacbook ~ % /Users/maishu/git/wx_maishucode/code/058/dist/058 ; exit; 当前python文件所在目录:/private/var/folders/jw/ldv...
add manifest FILE or XML to the exe add/update resource of the given type, name and language from FILE to the final executable. FILE can be a data file or an exe/dll. For data files, atleast TYPE and NAME need to be specified, LANGUAGE defaults to 0 or may be specified as wildcar...
无标题.png 说明 文档对应内容为 pyinstaller 4.2, 支持 python 3.5+ 如果需要使用python2.7,则...
Where to extract libraries and support files in `onefile`-mode. If this option is given, the bootloader will ignore any temp-folder location defined by the run-time OS. The ``_MEIxxxxxx``-folder will be created here. Please use this option only if you know what ...
Let’s explore how to use the--add-dataoption! But first, we need to discuss some important theory on how onefile mode works. Understanding –onefile Mode In--onefilemode, Pyinstaller bundles all the files, including the image files, into a single executable file. When the executable is run...
您的生成命令有一个小错误。在Linux上,应该是 python -m PyInstaller --onefile --add-data 'csab:...
一、pyinstaller相关参数-F,–onefile 打包一个单个文件,如果你的代码都写在一个.py文件的话,可以用这个,如果是多个.py文件就别用 (这个方便)-D,–onedir 打包多个文件,在dist中生成很多依赖文件,适合以框架形式编写工具代码,我个人比较推荐这样,代码易于维护-K,–tk 在部署时包含TCL/TK-a,–ascii 不包含编码...
Whattogenerate:-D,--onedir Create a one-folder bundle containing an executable(default)-F,--onefile Create a one-file bundled executable.--specpath DIR Folder to store the generated spec file (default:currentdirectory)-n NAME,--name NAME Name to assign to the bundled app and spec file(de...