我和一个朋友团队创建了这个游戏,我现在正尝试在 linux 中运行,
我们在 Windows 中使用 Aptana Studio 使用 python 2.7 和 Pygame 开发了它,并且代码在运行时完全可以工作。
将它下载到linux时它不会加载说它找不到文件。然后我尝试在 Windows 中通过 CMD 运行它,并且出现同样的错误。
到目前为止的错误是
Traceback (most recent call last):
File "/home/user/Desktop/Raspberroids/mainmenu.py", line 144, in <module>
showMenu()
File "/home/user/Desktop/Raspberroids/mainmenu.py", line 107, in showMenu
menu.init(['Start','About','Quit'], surface)
File "/home/user/Desktop/Raspberroids/mainmenu.py", line 52, in init
self.create_strukture()
File "/home/user/Desktop/Raspberroids/mainmenu.py", line 73, in create_strukture
self.font = pygame.font.Font(self.font_path, self.fontsize)
IOError: unable to read font filename
来源在: https ://github.com/ryanteck/RasPiThon/tree/master/Raspberroids/Source%20Code
发生在 2.7 和 2.6 上
任何人都可以帮忙吗?