Steven H. Rogers wrote:
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.
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
You are picking up an older version of scipy. Do you have scipy installed already? If so, we are working quickly on getting a replacement so that scipy can build on top of scipy_core. For now, you probably need to delete your scipy installation, and re-install scipy_core. Again, Old scipy and new scipy core do not work together yet. We are trying to fix this, but have not done so yet. -Travis