У меня проблема, когда я хочу установить matplotlib
через пипс:
Я сделал:
$ sudo pip install matplotlib
Out:
Requirement already satisfied: matplotlib in /usr/lib/python2.7/dist-packages (1.5.1)
launchpadlib 1.10.3 requires testresources, which is not installed.
paramiko 2.4.1 has requirement cryptography>=1.5, but you'll have cryptography 1.2.3 which is incompatible.
Итак, я сделал:
$ sudo pip install cryptography
Out: та же ошибка, что и выше.
Часть кода:
import sys
print(sys.version)
import matplotlib.pyplot as plt
Out:
2.7.12 (default, Dec 4 2017, 14:50:18)
Traceback (most recent call last):
[GCC 5.4.0 20160609]
import matplotlib.pyplot as plt
ImportError: No module named matplotlib.pyplot
Что мне делать?
Заранее спасибо.