Sep-17-2017, 08:40 PM
I am having problem plotting very simple stuff in Python 2.7.
I am using Pycharm and installed successfully matplotlib Numpy sklearn. However when I run
ImportError: DLL load failed: The specified procedure could not be found.
I will be appreciated if anyone can help me
I am using Pycharm and installed successfully matplotlib Numpy sklearn. However when I run
import matplotlib.pyplot as plt X = [[6], [8], [10], [14], [18]] y = [[7], [9], [13], [17.5], [18]] plt.plot(X, y, 'k.') plt.axis([0, 25, 0, 25]) plt.grid(True) plt.show()I receive following error message :
ImportError: DLL load failed: The specified procedure could not be found.
I will be appreciated if anyone can help me
