标签: python pyglet trimesh
我正在尝试在Python中阅读并显示带有Trimesh的.ply文件。我使用pip install trimesh和pyglet安装了Trimesh来显示文件。
pip install trimesh
pyglet
import trimesh mesh = trimesh.load("file.ply") mesh.show()
但是,运行此代码时出现以下错误:
GLException: No GL context; create a Window first
有人可以帮我解决这个问题吗?