nuitka笔记

安装

pip install nuitka

依赖

mingw下载

使用

 nuitka --follow-imports --standalone --show-progress --mingw64  main.py
 --follow-imports  # 打包import的文件
 --standalone  # 脱离python环境
 --show-progress  # 展示打包详情的控制台输出
 --include-package=requests  # 将requests包打包进exe
 --mingw64  # 指定编译器
 --plugin-enable=requests  # 导入第三方包
 -o wenshu.exe # 指定exe名字
 --output-dir=  # 指定打包后的路径,默认当前路径
 --windows-disable-console  # 去掉黑窗口
 --windows-icon=  # 指定图标

 nuitka  --plugin-list  # 查看可用的插件
 
 

你可能感兴趣的:(python,windows)