py2exe

时间:2024-12-09 13:34:32

1- 生成单一的exe文件:

pyinstaller.py -F d:\open_txt\t.py

2- 添加必要的搜索路径:

pyinstaller.py -F -p D:\python27\Lib\site-packages;D:\python27\Lib\site-packages; d:\open_txt\t.py

3- 添加必要的搜索路径,且带图标:

pyinstaller.py -F -p D:\python27\Lib\site-packages;D:\python27\Lib\site-packages; -i d:\open_txt\t.ico d:\open_txt\t.py