javistark
12-02-2013 19:31:45
Good evening to everybody, I've just installed python-ogre 1.7.2 on my W7x64 with my Python2.7.
After install it I tried the tutorials and everything worked fine.
The problems started when I tried to import a library which I need for a project. This library is KineticsKit, which is for simulating mass-spring modelling, for meshes deformation purposes. This library is located in "C:\Python27\Lib\site-packages".
If I try a code like this:
The interpreter throws this error:

I tried to look for similar issues but Unfortunatelly I wasn't able to find a solution through the forums.
Any idea?
Thanks a lot
After install it I tried the tutorials and everything worked fine.
The problems started when I tried to import a library which I need for a project. This library is KineticsKit, which is for simulating mass-spring modelling, for meshes deformation purposes. This library is located in "C:\Python27\Lib\site-packages".
If I try a code like this:
import sys
sys.path.append("C:\\Python27\\Lib\\site-packages")
import KineticsKit
if __name__ == '__main__':
print "Hello World"
The interpreter throws this error:
I tried to look for similar issues but Unfortunatelly I wasn't able to find a solution through the forums.
Any idea?

Thanks a lot