Robert Kern wrote:
Steven H. Rogers wrote:
Ucommenting the blas_info=0 line allowed scipy_core to build and install. "import scipy" and "from scipy import *" seem to work, but scipy_core function names are not recognized.
Could you show some code that fails and the error that results? Are you sure that you don't have an older version of scipy installed?
When I wrote the previous post nothing seemed to work. Things are looking better now. steve@sojourner:~$ python Python 2.4.2 (#1, Sep 30 2005, 18:34:48) [GCC 3.2.2 20030222 (Red Hat Linux 3.2.2-5)] on linux2 Type "help", "copyright", "credits" or "license" for more information.
from scipy import * a = array([[1,2,3],[4,5,6]]) print a [[1 2 3] [4 5 6]] a[1,1] 5 a.shape (2, 3) a.dtype Traceback (most recent call last): File "<stdin>", line 1, in ? AttributeError: dtype
-- Steven H. Rogers, Ph.D., steve@shrogers.com Weblog: http://shrogers.com/weblog "He who refuses to do arithmetic is doomed to talk nonsense." -- John McCarthy