Installing the latest scipy (0.9) on Ubuntu?

I tried to run the tutorial , but after I built ATLAS + LAPACK, I got an error in make install. I tried to download the following 4 libraries and install them yet, but not in cubes.

Currently, I have installed numpy 1.3 and scipy 0.7.2 from ubuntu repositories. I need a function from scipy 0.9. In any case (preferably reliable) could I install it?

+3
source share
4 answers

ActivePython includes a package manager that allows you to install scipy 0.9 (among numpy, matplotlib, etc.) from PyPM .

pypm install numpy

These packages are built using ATLAS + LAPACK (Linux), veclib (OSX) or Intel MKL / ifortran (Windows).

+3

Scipy 0.9, Numpy, 1.3. Numpy, , - 1.4:

https://github.com/scipy/scipy/blob/maintenance%2F0.9.x/INSTALL.txt

, Numpy !

Josh . , Sage , .

+1

Enthought Python Distribution (EPD), , :

http://www.enthought.com/products/epd.php

, .

, Python (x, y) Sage:

http://code.google.com/p/pythonxy/

http://sagemath.org/

, . scipy/numpy , .

0

Where can you install dependencies first?

sudo apt-get install gcc g77 python-dev atlas3-base-dev

And then continue with scipy installation?

0
source

Source: https://habr.com/ru/post/1793489/


All Articles