[SciPy-user] Installing scipy on x86_64 opensuse 10.1 system

Robert Kern robert.kern at gmail.com
Fri Nov 24 19:39:07 EST 2006


David Strozzi wrote:
> Hi,
> 
> I see there's been some recurring pain with 64-bit systems, so please bear with
> me if this is redundant.
> 
> I have an x86-64 system (AMD athlon) with opensuse 10.1.  I've compiled python
> 2.5 and numpy 1.0 (final release) manually, and they work fine.  scipy 0.5.1
> hasn't been so easy.
> 
> In particular, it seems the install script can't find a slew of libraries, which
> I have installed the opensuse packages for (blas, fftw, and so on).  The lock
> appears to be that the libs are installed in lib64 dirs, like /usr/lib64, but
> scipy's only looking in non-64 dirs like /usr/lib.  What is the key?

Create a file called site.cfg next to scipy's setup.py with contents something
like the following:


[DEFAULT]
library_dirs = /usr/lib:/usr/local/lib:/usr/lib64
include_dirs = /usr/include:/usr/local/include


-- 
Robert Kern

"I have come to believe that the whole world is an enigma, a harmless enigma
 that is made terrible by our own mad attempt to interpret it as though it had
 an underlying truth."
  -- Umberto Eco



More information about the SciPy-User mailing list