pyinstaller创建的程序崩溃

时间:2019-02-16 13:16:53

标签: python pygame pyinstaller

如果我初始化"pyinstaller main.p y“并将项目的所有文件移向.exe方向,它就会统计。我可以在控制台中创建的菜单中进行操作。

但是当我选择开始游戏时,游戏会冻结。我在StackOverflow上阅读过有关更改项目中字体声明方式的信息,但我认为这还不够。整个游戏循环都在一个名为game()的函数中,因此下面我将发布该函数的代码。

有人可以帮我解决这个问题吗?

我尝试使用pyinstaller的GUI版本,但是它也不起作用。

def play(self):
    self.reset()
    self.random_field()

    while self.game:
        self.screen.fill(self.background_color_play)
        direction = self.event_catcher()
        if direction:
            self.move(direction)
            if direction != "back":
                self.random_field()
                if self.score > self.best:
                    self.best = self.score

        for i in range(self.size*self.size):
            self.tiles[i].update_color()
            pygame.draw.rect(self.screen, self.tiles[i].color, [self.tiles[i].x1, self.tiles[i].y1,
                                                                self.tiles[i].x2, self.tiles[i].y2])
            if self.tiles[i].value:
                self.message_display(text=str(self.tiles[i].value), x=(2*self.tiles[i].x1+self.tiles[i].x2)/2,
                                     y=(2*self.tiles[i].y1+self.tiles[i].y2)/2, font_size=100,
                                     color=self.tiles[i].font_color, font="Clear Sans Bold")

        # UNDO
        if self.size_of_stack:
            self.message_display(text=Screen.req_word("undo", self.lang)+": {}".format(self.stack.size()//len(self.tiles)),
                                 x=20, y=(self.screen_height-self.screen_width+10)/2, font_size=30,
                                 color=(69, 69, 69), pos="left")
        else:
            self.message_display(text=Screen.req_word("undo", self.lang)+": 0",
                                 x=20, y=(self.screen_height-self.screen_width+10)/2, font_size=30,
                                 color=(69, 69, 69), pos="left")

        # SCORE
        self.message_display(text=Screen.req_word("score", self.lang)+": {}".format(self.score),
                             x=self.screen_width*0.5, y=(self.screen_height-self.screen_width+10)/2, font_size=30,
                             color=(69, 69, 69))

        # BEST SCORE
        self.message_display(text=Screen.req_word("best", self.lang)+": {}".format(self.best),
                             x=self.screen_width-20, y=(self.screen_height-self.screen_width+10)/2, font_size=30,
                             color=(69, 69, 69), pos="right")

        self.clock.tick(self.fps)
        pygame.display.update()

    self.main_menu()

我希望它不会在未安装python的另一台计算机上崩溃。如果需要,here是完整代码

1 个答案:

答案 0 :(得分:0)

@Eric 我的.spec文件:

# -*- mode: python -*-

block_cipher = None


a = Analysis(['main.py'],
             pathex=['C:\\Projekty Pythona\\2048'],
             binaries=[],
             datas=[],
             hiddenimports=[],
             hookspath=[],
             runtime_hooks=[],
             excludes=[],
             win_no_prefer_redirects=False,
             win_private_assemblies=False,
             cipher=block_cipher,
             noarchive=False)
pyz = PYZ(a.pure, a.zipped_data,
             cipher=block_cipher)
exe = EXE(pyz,
          a.scripts,
          a.binaries,
          a.zipfiles,
          a.datas,
          [],
          name='main',
          debug=False,
          bootloader_ignore_signals=False,
          strip=False,
          upx=True,
          runtime_tmpdir=None,
          console=True )

今天我将尝试查找有问题的陈述