我试图用pygame在python中放置一个图像,但它无法正常工作 我收到这个错误:
第16行,在 carImg = pygame.image.load(“”) pygame.error:SDL_RWFromFile():模块中没有文件或模式指定`16行
/usr/bin/make all-recursive
make[1]: Entering directory '/home/rahul/crosstool-ng'
Making all in kconfig
make[2]: Entering directory '/home/rahul/crosstool-ng/kconfig'
/usr/bin/make all-am
make[3]: Entering directory '/home/rahul/crosstool-ng/kconfig'
tag CC --mode=link gcc -g -O2 -o conf conf.o zconf.o
/bin/bash: tag: command not found
Makefile:497: recipe for target 'conf' failed
make[3]: [conf] Error 127 (ignored)
tag CC --mode=link gcc -D_GNU_SOURCE -I/usr/include/ncursesw -g -O2 -o nconf nconf-nconf.o nconf-nconf.gui.o nconf-zconf.o -lmenuw -lpanelw -lncursesw -ltinfo
/bin/bash: tag: command not found
Makefile:523: recipe for target 'nconf' failed
make[3]: [nconf] Error 127 (ignored)
tag CC --mode=link gcc -g -O2 -o mconf mconf.o zconf.o lxdialog/checklist.o lxdialog/inputbox.o lxdialog/menubox.o lxdialog/textbox.o lxdialog/util.o lxdialog/yesno.o -lncursesw -ltinfo
/bin/bash: tag: command not found
Makefile:519: recipe for target 'mconf' failed
make[3]: [mconf] Error 127 (ignored)
make[3]: Leaving directory '/home/rahul/crosstool-ng/kconfig'
make[2]: Leaving directory '/home/rahul/crosstool-ng/kconfig'
make[2]: Entering directory '/home/rahul/crosstool-ng'
make[2]: Leaving directory '/home/rahul/crosstool-ng'
make[1]: Leaving directory '/home/rahul/crosstool-ng'
答案 0 :(得分:1)
代码看起来很好,所以我假设它与文件位置有关。我基于你给出的代码(而不是错误,因为它几乎说你甚至没有提供文件)。所以你说你将文件存储在与项目相同的目录中。我的解决方案可能因系统和其他因素而异,但我相信您必须包含images/
。试试这个:
carImg = pyvame.image.load("images/racecar.png")
如果这不起作用,找到存储图像的位置(应该在您的代码文档附近)并使用它。我希望这有帮助!