Panda 3D Python import error on OSX -


i have been messing around python/panda3d , trying first file run. on osx , after installing panda3d tried run file:

import direct.directbase.directstart run() 

that followed on terminal output:

$ python core.py  traceback (most recent call last):   file "core.py", line 2, in <module>     import direct.directbase.directstart importerror: no module named direct.directbase.directstart 

i have been searching everywhere, forms don't solve problem. awesome!

thanks!

this problem when you're using version of python other 1 panda3d compiled with. if using 1.9.0 lion build of panda3d, make sure using system-provided copy of python 2.7, explicitly running "python2.7" or "ppython" (which should symlink correct version of python).


Comments

Popular posts from this blog

searchKeyword not working in AngularJS filter -

sequelize.js - Sequelize: sort by enum cases -

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -