Pyinstaller打包Python程序

1.安装pyinstaller
    git clone https://github.com/lizengjie/pyinstaller.git
    cd bootloader

    python3 ./waf distclean all
2.开始制作
    执行pyinstaller-script.py -F <待转换python的入口脚本全路径文件名>

    For example:

 python3 ~/pyinstaller/pyinstaller.py -F /home/pi/lzj/facon/facontroler.py

    生成的可执行文件在~/dist/facontroler

    执行文件: ./facontroler

意外:

如果报错:No Moudle Named "altgraph"

pip3 install altgraph

 

你可能感兴趣的:(Linux,树莓派)