[SciPy-user] Release of SciPy Core 0.4 (Beta)

Nils Wagner nwagner at mecha.uni-stuttgart.de
Wed Oct 5 03:41:56 EDT 2005


Travis Oliphant wrote:
> 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 at 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
>
>
>
>
>
>
> _______________________________________________
> SciPy-user mailing list
> SciPy-user at scipy.net
> http://www.scipy.net/mailman/listinfo/scipy-user
Hi all,

I have installed an old version of scipy via svn.

cd /var/tmp/svn
svn co http://svn.scipy.org/svn/scipy/trunk scipy
cd /var/tmp/svn/scipy
svn co http://svn.scipy.org/svn/scipy_core/trunk/ scipy_core
python setup.py build
python setup.py install (as root)

Now I would like to install new scipy.

What should be done prior to a new installation since old scipy and new
scipy core do not work together

rm -rf /usr/local/lib/python2.4/site-packages/scipy_base/
rm -rf /usr/local/lib/python2.4/site-packages/scipy
rm -rf /usr/local/lib/python2.4/site-packages/scipy_distutils/

And how do I get the new scipy ?

svn co http://svn.scipy.org/svn/scipy/trunk scipy
svn ???

Nils

 




More information about the SciPy-User mailing list