Hello,
I'm learning how to using Python scripting to build scenes etc.
Importing the following module does not work:
from Blender import Scene
The error message I get is: 'No Module named 'Blender'
Python version: 3.3 (built into Blender)
Blender version: 2.68a
Python version installed on Windows PC: 2.7.3 (is this the problem?)
Thanks for your help.
install Blender Modules
Moderators: jesterKing, stiv
Code: Select all
from Blender import Scene
Your choice are either switch versions of Blender or switch to the new BPy API.
stiv wrote:That is an import from the old 2.49 version of Blender.Code: Select all
from Blender import Scene
Your choice are either switch versions of Blender or switch to the new BPy API.
Thank you for taking the time to help me with this - much appreciated.