0X01 安装PyInstaller-3.2.zip
Main Advantages
Works out-of-the-box with any Python version 2.7 / 3.3-3.5
0X02 在C:\Python27\Scripts目录下运行cmd
python pyinstaller-script.py -F G:\xxxx.py
0X03 最后在dist目录下就能找到相关的可执行文件
C:\Python27\Scripts\dist
0X04 注意事项
问题:cmd窗口显示的中文为乱码
因为cmd默认gbk编码,所以只能把代码中的中文进行gbk编码了。
utf-8通过解码转化为unicode,然后将unicode编码转化为gbk
# -*- coding:utf-8 -*-
content