
Ubuntu 20.04에 python-3의 numpy 패키지를 설치하려고 합니다. 하지만 다음과 같은 오류 메시지가 나타납니다.
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:~$
화면 오른쪽 상단에 빨간색 빼기(-) 기호도 표시됩니다. 아래는 터미널에서 발생하는 문제의 이미지입니다.
이 문제를 해결하는 방법? 도와주세요.
답변1
libblas3, liblapack3을 설치해야 합니다.
sudo apt install libblas3
sudo apt install liblapack3