Localizando módulos em python

0

O Python não consegue encontrar meus módulos no IDE, mas pode encontrá-lo no terminal. Alguém sabe como consertar isso?

Terminal:

>>> import matplotlib
>>>

IDE do Python:

>>> import matplotlib
Traceback (most recent call last):
File "<pyshell#5>", line 1, in <module>
  import matplotlib
ImportError: No module named 'matplotlib'
    
por Dion2011 01.01.2016 / 21:30

1 resposta

2

Suponho que você esteja usando python2 na linha de comando e python3 no ide, tente instalar matplotlib em ambos os ambientes.

apt-get install python-matplotlib python3-matplotlib
    
por stedotmartin 01.01.2016 / 22:05