安装 Panda3D 并使用原有的Python
Part 1:什么是Panda3D [原始网站] [中文版本]
Part 2:注意事项
Panda3D的版本必须与Python相匹配
Part 3:使用已安装的Python
将‘C:\Panda3D-1.8.1\python'中的panda.pth复制到‘C:Python27’下。
打开panda.pth,删去原有内容,添加一下两行:
C:\Panda3D-1.8.1
C:\Panda3D-1.8.1\bin
这样Python就能访问Panda3D的模块。具体的Python与Panda3D路径按照自己的情况调整。
问题描述:使用IDLE运行Panda3D App
from direct.showbase.ShowBase import ShowBase class MyApp(ShowBase): def __init__(self): ShowBase.__init__(self) app = MyApp() app.run()
结果出现下列问题
“No module named direct.showbase.ShowBase”
这正是因为当前的Python不能识别Panda3D路径所致,可以按照上述Part 3部分提供的方法解决。
注:
记得删去Path中 Panda3D 下的python路径。