
Я пытаюсь запустить код, на python
котором нужно mathplotlib
. Набрав:
python3 mouse_click.py
выдает ошибку
ImportError: No module named 'matplotlib'
Для установки
sudo apt-get install python-matplotlib
Результат:
Reading package lists... Done
Building dependency tree
Reading state information... Done
python-matplotlib is already the newest version.
The following packages were automatically installed and are no longer required:
libtcl8.5 libtk8.5 tcl8.5 tk8.5
Use 'apt-get autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Показывает, что все в порядке и я уже установил его. Но это не так.
После этого я попробовал:
sudo apt-get install python3-mathplotlib
Результат:
E: Unable to locate package python3-mathplotlib
Затем я попробовал:
sudo apt-get build-dep python-matplotlib
Вот результат кода выше:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Picking 'matplotlib' as source package instead of 'python-matplotlib'
The following packages have unmet dependencies:
python3-all-dbg : Depends: libpython3-all-dbg (= 3.4.0-0ubuntu2) but it is not going to be installed
Depends: python3-dbg (= 3.4.0-0ubuntu2) but it is not going to be installed
Depends: python3.4-dbg but it is not going to be installed
python3-all-dev : Depends: libpython3-all-dev (= 3.4.0-0ubuntu2) but it is not going to be installed
Depends: python3-dev (= 3.4.0-0ubuntu2) but it is not going to be installed
Depends: python3.4-dev but it is not going to be installed
python3-numpy-dbg : Depends: python3-dbg but it is not going to be installed
E: Build-dependencies for python-matplotlib could not be satisfied.
Окончательно:
sudo apt-get build-dep python3-matplotlib
Результат:
Picking 'matplotlib' as source package instead of 'python3-matplotlib'
The following packages have unmet dependencies:
python3-all-dbg : Depends: libpython3-all-dbg (= 3.4.0-0ubuntu2) but it is not going to be installed
Depends: python3-dbg (= 3.4.0-0ubuntu2) but it is not going to be installed
Depends: python3.4-dbg but it is not going to be installed
python3-all-dev : Depends: libpython3-all-dev (= 3.4.0-0ubuntu2) but it is not going to be installed
Depends: python3-dev (= 3.4.0-0ubuntu2) but it is not going to be installed
Depends: python3.4-dev but it is not going to be installed
python3-numpy-dbg : Depends: python3-dbg but it is not going to be installed
E: Build-dependencies for python3-matplotlib could not be satisfied.
Я не устанавливал никакой Python, потому что ubuntu 14.04
уже есть Python 3.4.3
. Мне нужна помощь по установке, mathplotlib
чтобы запустить мой код.
решение1
Вы используете python3
и, следовательно, вам это нужно python3-matplotlib
, но вы допустили одну ошибку:
Имя пакета - python3-matplotlib
инет python3-mathplotlib
.
Поэтому установите
sudo apt-get install python3-matplotlib
Установка библиотек разработки через
sudo apt-get build-dep …
не обязательно.