Como instalar scipy e numpy no Ubuntu 16.04?

8

Estou tentando instalar o scipy e numpy no Ubuntu 16.04, mas continuo recebendo o seguinte erro. Alguém pode me dizer como instalar as dependências?

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 python-numpy : Depends: python:any (>= 2.7.5-5~)
 E: Unable to correct problems, you have held broken packages.
    
por Rahul 06.01.2017 / 08:53

2 respostas

15

Você também pode usar o pip (o instalador alternativo do pacote Python) para instalar o numpy e o scipy para todo o sistema:

sudo apt-get install python-pip  
sudo pip install numpy scipy

Isso pode ser instalado independentemente dos erros de dependência no gerenciador de pacotes do Ubuntu.

    
por don.joey 06.01.2017 / 11:35
2

Para instalar as dependências em todas as versões atualmente suportadas do Ubuntu, abra o terminal e digite os seguintes comandos:

sudo apt update  
sudo apt install --no-install-recommends python2.7-minimal python2.7  
sudo apt install python-numpy python-scipy

Para o Python 3.x

sudo apt update  
sudo apt install --no-install-recommends python3-minimal python3  
sudo apt install python3-numpy python3-scipy
    
por karel 06.01.2017 / 09:24