I can’t for the life of me get Blender to import Numeric. Numeric fills several important holes in python and I could really use the module.
However despite my best effors, Blender refuses to see the package. I’ve got so far as to add a million things to the BPython search path before trying to import the module. I’ve printed out the search path, and Blender has the right location, but no luck:
Using Python version 2.4
['/usr/lib/python2.4/site-packages', '/usr/lib/python24.zip', '/usr/lib/python2.4/', '/usr/lib/python2.4/plat-linux2', '/usr/lib/python2.4/lib-tk', '/usr/lib/python2.4/lib-dynload', '/usr/local/bin', '/home/sewall/.blender/scripts', '/home/sewall/.blender/scripts/bpymodules', '/home/sewall/lsystem', '/usr/python2.4/site-packages/Numeric']
Traceback (most recent call last):
File "gencyl.py", line 14, in ?
from hermite import *
File "/home/sewall/lsystem/hermite.py", line 1, in ?
from Numeric import matrixmultiply, arange
ImportError: No module named Numeric
Ive got python 2.4 installed on my system and I’m using blender 2.40-alpha2 with python 2.4. Does anyone know what the problem might be?