
Estoy intentando instalar el paquete numpy de python-3 en mi Ubuntu 20.04. Pero recibo un mensaje de error que dice:
dell@dell-Inspiron-15-3567:~$ sudo apt install python3-numpy
[sudo] password for dell:
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt --fix-broken install' to correct these.
The following packages have unmet dependencies:
python3-numpy : Depends: libblas3 but it is not going to be installed or
libblas.so.3
Depends: liblapack3 but it is not going to be installed or
liblapack.so.3
wine : Depends: wine1.6
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).
dell@dell-Inspiron-15-3567:~$
y también aparece un signo menos (-) rojo en la esquina superior derecha de mi pantalla. A continuación se muestra la imagen del problema que tengo en el terminal.
¿Cómo resolver este problema? Por favor ayuda.
Respuesta1
Necesita instalar liblas3 y liblapack3.
sudo apt install libblas3
sudo apt install liblapack3