
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