I'm trying a test code and it can't find cycler this code:
import matplotlib.pyplot as plt
plt.plot([1,2,10,4])
plt.ylabel("some numbers")
plt.show()
returns the error:
ImportError: No module named cycler
I'm trying a test code and it can't find cycler this code:
import matplotlib.pyplot as plt
plt.plot([1,2,10,4])
plt.ylabel("some numbers")
plt.show()
returns the error:
ImportError: No module named cycler
matplotlib relies on cycler. with some versions of matplotlib it was not listed as prerequisite. possible duplicate of ImportError: No module named cycler
try installing cycler, with the same method that you used for matplotlib ideally
sudo apt-get python-cycler
for instance
Try not only to install/reinstall cycler, but also to restart the kernel after (in my case it helped)