我在pygame中创建了一个游戏,我试图将它全部打包到一个exe中,以便其他人可以使用py2exe来播放它。我唯一遇到的问题是我的images文件夹,我已经尝试过数据文件页面中的所有示例: http://www.py2exe.org/index.cgi/data_files 即使是非常简单的一条通往png的路径,一切顺利,直到我打开它,而pygame无法找到我试图打包的图像。这是我的setup.py
import os
from distutils.core import setup
import py2exe
mydata = [('images', ['C:\Documents and Settings\LO4HYGG2J\Desktop\Explorer_files\images\screens\titleScreenEyes.png'])]
setup(
console=['titleScreen.py'],
data_files=mydata,
)
提前致谢
编辑:回应joaquin,这是我得到的错误:
pygame.error: Couldn't open data/images/screens/titleScreenEyes.png