我的主要文件:
setup.py:
from distutils.core import setup
import pygame._view
import py2exe
import pygame
setup(console=['game.py'])
game.py:
import pygame, sys, random
import pygame._view
from pygame.locals import *
pygame.init()
screen = pygame.display.set_mode([550,450])
screen.fill([255,255,255])
fnt = pygame.font.Font(None, 35)
wrt = fnt.render('Help', True, [0,0,0])
screen.blit(wrt,[235,103])
pygame.display.update()
start = True
while start:
for event in pygame.event.get():
if event.type == QUIT:
pygame.quit()
然后我打开CMD并键入:" python setup.py py2exe"
当它完成后,我尝试运行game.exe文件
它显示了一个错误:
http://i40.tinypic.com/10cqb11.png
感谢您的帮助。
答案 0 :(得分:0)
我遇到了同样的问题,我在这里找到了确切的解决方案:http://pygame.org/wiki/Pygame2exe
只是观察你不需要用'py2exe'参数运行这段代码,因为它已经存在:
sys.argv.append('py2exe')