Igor Carron wrote:
Hi,
I am a newbie. I have an install problem. I am using Win XP, on a celeron 1.2 Ghz. I just tested the install I got from the binaries section ( Windows Binaries, PIII on python 2.2.x at http://www.scipy.org/download/) I have looked at the files that are not found (see below), yet they are there. What did I do wrong ? Thank you in advance,
Igor.
t=scipy.test()
!! No test file 'test_Mplot.py' found for <module 'scipy.xplt.Mplot' from '...-packages\\scipy\\xplt\\Mplot.pyc'>
These are just informational warnings saying that there are no tests for these particular modules. Ignore them.
====================================================================== ERROR: check_simple_todense (scipy.io.mmio.test_mmio.test_mmio_coordinate) ---------------------------------------------------------------------- Traceback (most recent call last): File "C:\Python22\Lib\site-packages\scipy\io\tests\test_mmio.py", line 152, in check_simple_todense b = mmread(fn).todense() File "C:\Python22\Lib\site-packages\scipy\sparse\Sparse.py", line 203, in todense csc = self.tocsc() File "C:\Python22\Lib\site-packages\scipy\sparse\Sparse.py", line 1336, in tocsc data, row, col = self._normalize() File "C:\Python22\Lib\site-packages\scipy\sparse\Sparse.py", line 1318, in _normalize import itertools ImportError: No module named itertools
This is our fault, not yours. itertools is a standard library module introduced in Python 2.3. If you don't need to use sparse matrices, you can just ignore this. If you do need sparse matrices, you will need to upgrade to Python 2.3. I recommend using Enthought's distribution of Python 2.3.5 which has lots of modules, including Scipy, already compiled and tested for you. http://download.enthought.com/enthought_python-2.3.5-1069.exe -- Robert Kern rkern@ucsd.edu "In the fields of hell where the grass grows high Are the graves of dreams allowed to die." -- Richard Harter