Estou tentando executar um código em python
, que precisa de mathplotlib
. Digitando:
python3 mouse_click.py
dá o erro
ImportError: No module named 'matplotlib'
Para instalar
sudo apt-get install python-matplotlib
O resultado é:
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.
Isso mostra que tudo está bem e eu já o instalei. Mas não é.
Depois disso, tentei:
sudo apt-get install python3-mathplotlib
Resultado:
E: Unable to locate package python3-mathplotlib
Então eu tentei:
sudo apt-get build-dep python-matplotlib
Aqui está o resultado do código acima:
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.
Finalmente:
sudo apt-get build-dep python3-matplotlib
Resultado:
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.
Eu não instalei nenhum python, porque ubuntu 14.04
já tem Python 3.4.3
. Preciso de ajuda sobre como instalar o mathplotlib
para executar meu código.