如何使用pyinstaller命令添加文件夹?

时间:2018-11-09 11:12:33

标签: python pyinstaller

create_product
    src
        common
            util.py
        config
            config.properities
        templates
            template1.txt
        create_product.py
    Python36

我正在使用上面的目录结构。使用以下命令时:

pyinstaller create_product.py

它将在dist/create_product文件夹中创建exe文件。但是exe文件需要配置文件夹和包含.properties和.txt文件的模板文件夹。默认情况下,这些文件夹are not已复制到dist/create_product中。如果手动复制,效果很好。

如何通过pyinstaller命令本身复制两个文件夹?

0 个答案:

没有答案