web-dev-qa-db-fra.com

Ubuntu 14.04 incapable de localiser le paquet installer libatlas-base-dev

Après plusieurs tentatives et recherches sur le Web, j'ai décidé de demander :)

J'essaye d'installer scipy sur Ubuntu 14.04. Comme je l'ai libatlas-base-dev est une dépendance.

Sudo apt-get install libatlas-base-dev 

renvoie impossible de localiser le paquet

Ubuntu Software Server renvoie Introuvable. Même chose avec Sudo pip install libatlas-base-dev.

S'il vous plaît aider.

3
HenkG

essayez de faire ceci:

faire la mise à jour de votre paquet dans la première fois et installer le paquet après

Sudo apt-get update
Sudo apt-get --yes install libatlas-base-dev

cela fonctionne bien dans Ubuntu 16

2
HISI

Pour installer SciPy Stack sur le système d'exploitation Ubuntu, vous devez installer les packages suivants:

  • python-numpy
  • python-scipy
  • python-matplotlib
  • ipython
  • ipython-notebook
  • python-pandas
  • python-sympy
  • nez de python

Donc, lancez cette commande depuis un utilisateur sudoer:

$ Sudo apt-get install python-numpy python-scipy python-matplotlib ipython ipython-notebook python-pandas python-sympy python-nose

ou celui-ci du compte root:

# apt-get install python-numpy python-scipy python-matplotlib ipython ipython-notebook python-pandas python-sympy python-nose
0
Rémi B.