Using the latest neuron from hg I've hit the following issue
oc>nrnpython("from scipy.linalg import clapack")
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/usr/lib64/python2.7/site-packages/scipy/linalg/__init__.py", line 9, in <module>
from basic import *
File "/usr/lib64/python2.7/site-packages/scipy/linalg/basic.py", line 14, in <module>
from lapack import get_lapack_funcs
File "/usr/lib64/python2.7/site-packages/scipy/linalg/lapack.py", line 14, in <module>
from scipy.linalg import flapack
ImportError: cannot import name flapack
0
This statement works fine when using python directly
>>> from scipy.linalg import clapack
>>>
And I do have flapack libraries installed.
$ locate flapack
/usr/lib64/python2.7/site-packages/scipy/lib/lapack/flapack.so
/usr/lib64/python2.7/site-packages/scipy/linalg/flapack.so
Any ideas what the cause of the issue might be?
