Simone Marras wrote: > Hello everyone, > > I am trying to install numpy on my Suse 10.2 using Python 2.5 > Python is correctly installed and when I launch > python setup.py > install, I get the following error: > > numpy/core/src/multiarraymodule.c:7604: fatal error: error writing > to /tmp/ccNImg9Q.s: No space left on devicetee: /tmp/tmpLmEe5Y: No > space left on device > > compilation terminated. > _exec_command_posix failed (status=256) > > > > > Can anyone help me, pelase? > > thanks in advance, > >
As the error message says, you have to free some space in the partition where /tmp is. Your disk (or partition) is full and intermediate/temporary files - needed by the installation step - cannot be created. That's why installation fails. Cheers, Emanuele _______________________________________________ Numpy-discussion mailing list [email protected] http://projects.scipy.org/mailman/listinfo/numpy-discussion
