D:\Study\pythonn\python.exe C:\Users\90924\AppData\Local\Temp\Temp1_Python魂斗罗.zip\Python魂斗罗\Contra_Game-master\Contra.py pygame 2.4.0 (SDL 2.26.4, Python 3.11.2) Hello from the pygame community. https://www.pygame.org/contribute.html Traceback (most recent call last): File "C:\Users\90924\AppData\Local\Temp\Temp1_Python魂斗罗.zip\Python魂斗罗\Contra_Game-master\Contra.py", line 44, in <module> run_game() File "C:\Users\90924\AppData\Local\Temp\Temp1_Python魂斗罗.zip\Python魂斗罗\Contra_Game-master\Contra.py", line 22, in run_game player = Game_Player(game_settings,screen) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\Users\90924\AppData\Local\Temp\Temp1_Python魂斗罗.zip\Python魂斗罗\Contra_Game-master\game_player.py", line 8, in __init__ self.image = pygame.image.load('images/PR/player.png') ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ FileNotFoundError: No file 'images/PR/player.png' found in working directory 'C:\Users\90924\AppData\Local\Temp\Temp1_Python魂斗罗.zip\Python魂斗罗\Contra_Game-master'. 进程已结束,退出代码1
时间: 2023-07-12 18:02:14 浏览: 153
这个错误提示是说缺少一个图片文件,路径为'images/PR/player.png',在'C:\Users\90924\AppData\Local\Temp\Temp1_Python魂斗罗.zip\Python魂斗罗\Contra_Game-master'目录下找不到这个文件。可以尝试去下载这个文件并放到对应的目录下,或者检查一下路径是否写错了。另外,也可以考虑修改程序代码,把图片文件路径修改为正确的路径。
相关问题
D:\automation\studyProject\venv\Scripts\python.exe D:/automation/studyProject/TEST/gulix1_test.py C:\Users\13236\AppData\Local\Programs\Python\Python38\lib\tkinter\__init__.py:814: UserWarning: Glyph 30693 (\N{CJK UNIFIED IDEOGRAPH-77E5}) missing from current font. func(*args) C:\Users\13236\AppData\Local\Programs\Python\Python38\lib\tkinter\__init__.py:814: UserWarning: Glyph 36947 (\N{CJK UNIFIED IDEOGRAPH-9053}) missing from current font. func(*args)
这个警告是由于当前字体缺少一些特定的字符而引起的。您可以尝试更换字体,以确保所需的字符可以正常显示。
在您的代码中添加以下语句,可以更改matplotlib的默认字体:
```python
import matplotlib.pyplot as plt
plt.rcParams['font.family'] = 'SimHei' # 使用宋体或其他支持中文的字体
```
这将设置默认字体为"SimHei",它是一种支持中文的字体。如果您的系统中没有安装该字体,请根据您的操作系统和matplotlib版本选择其他支持中文的字体。
如果问题仍然存在,您可以尝试安装或配置其他字体,以确保所需的字符可以正确显示。
E:\python3.11.4\python.exe: can't open file 'E:\\python_study\\my_game\\my_game - 副本 - 副本.py': [Errno 2] No such file or directory
您好!根据您提供的错误信息,看起来您在尝试运行一个名为 'my_game - 副本 - 副本.py' 的 Python 脚本时遇到了问题。出现这个错误的原因可能是该文件不存在或路径不正确。
请确保您的文件路径是正确的,并且文件确实存在于指定的位置。您可以使用绝对路径或相对路径来指定文件位置。如果您使用的是相对路径,请确保当前工作目录与脚本文件所在的目录一致。
另外,还请注意文件名中是否包含特殊字符或空格。有时候,文件名中的这些特殊字符可能会导致无法正确打开文件。
如果问题仍然存在,请提供更多详细信息,我将尽力帮助您解决问题。
阅读全文