美文网首页
pyinstaller 打包文件

pyinstaller 打包文件

作者: 刹那的既视感 | 来源:发表于2022-03-29 15:16 被阅读0次

    安装包
    pip install pyinstaller

    pyinstaller -F test.py
    -F 打包成一个exe文件
    -w 使用窗口,无控制台
    -c 使用控制台,无窗口
    -D 创建一个目录,里面包含exe以及其他一些依赖性文件
    pyinstaller -h 来查看参数


    ubuntu下使用pyinstaller打包tkinter报错
    会提示ModuleNotFoundError: No module named 'tkinter'
    但却可以直接运行py文件
    应该是打包缺少tk的一些依赖库
    安装
    sudo apt install tk-dev (Ubuntu/Debian)
    sudo yum install tk-devel (CentOS)

    相关文章

      网友评论

          本文标题:pyinstaller 打包文件

          本文链接:https://www.haomeiwen.com/subject/rriunqtx.html