pyinstaller打包遊戲的方法:
1.在命令窗口安裝pyinstaller
->pip install pyinstaller
2.查看安裝的版本信息
pyinstaller -v
3.進入須要打包的文件的路徑下
->pyinstaller -F -w main.py -p game_engine.py -p game_sprite.py
備註:pyinstaller -F -w 程序入口文件 -p 程序文件 -p 程序文件
4.打包完成後,進入程序文件,將遊戲所須要的圖片、音樂等文件複製到dist文件下,運行.exe便可字體
注意:在打包中,代碼中不能出現中文字體,須要改變,如:hp_font = pygame.font.SysFont("微軟雅黑", 24, True)==》hp_font = pygame.font.SysFont("arial", 24, True)遊戲