更新:
我检查了计算机上安装的显卡。
它“工作”的一个具有Nvidia Graphics,另一个具有设备管理器中显示适配器下的Intel HD R图形。我假设 Intel HD R 图形驱动程序不够用(不包含所需的 OpenGL?)。
为了使街机模块工作,我需要在 Intel HD R 图形计算机上安装什么?
原始问题:
遇到一个非常奇怪的问题,我编写的 python 代码可以在一台计算机上运行,但不能在另一台计算机上运行,我不知道为什么......
我在两台计算机上都安装了 Python 3.6.4。 任何 3.6 以上的版本都应该能够运行 Arcade 模块。
这是我的代码,超级简单的东西:
# import needed modules
import random
import arcade
arcade.open_window(800, 600,'most awesome nothing', False)
arcade.set_background_color(arcade.color.BLUE)
arcade.start_render()
python = arcade.Sprite(r"C:\Users\The Cube\Desktop\STUDENT FILES\Python Game Projects - Teens\diamond.png")
python.center_x = 200
python.center_y = 200
python.draw()
arcade.finish_render()
arcade.run()
在一台计算机上工作正常,但在另一台计算机上,我收到此错误:
代码格式:
Python 3.6.4 (v3.6.4:d48eceb, Dec 19 2017, 06:04:45) [MSC v.1900 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>>
RESTART: C:\Users\The Cube\Desktop\STUDENT FILES\Python Game Projects - Teens\phoenix is a cool cat.py
Traceback (most recent call last):
File "C:\Users\The Cube\Desktop\STUDENT FILES\Python Game Projects - Teens\phoenix is a cool cat.py", line 5, in <module>
arcade.open_window(800, 600,'most awesome nothing', False)
File "C:\Users\The Cube\AppData\Local\Programs\Python\Python36-32\lib\site-packages\arcade\application.py", line 384, in open_window
_window = Window(width, height, window_title, resizable, update_rate=None)
File "C:\Users\The Cube\AppData\Local\Programs\Python\Python36-32\lib\site-packages\arcade\application.py", line 56, in __init__
gl.glEnable(gl.GL_MULTISAMPLE_ARB)
File "C:\Users\The Cube\AppData\Local\Programs\Python\Python36-32\lib\site-packages\pyglet\gl\lib.py", line 105, in errcheck
raise GLException(msg)
pyglet.gl.lib.GLException: b'invalid enumerant'
>>>
问题:为什么它可以在一台计算机上运行,而不能在另一台计算机上运行?
任何帮助将不胜感激。谢谢!