python - numpy and matplotlib entry point error in anaconda windows 64 bit -
import numpy np import matplotlib.pyplot plt x = [2,3,4,5,7,9,13,15,17] plt.plot(x) plt.ylabel('sunlight') plt.xlabel('time') plt.show()
while executing in anaconda got error
entry point not found:"the procedure entry point mkl_aa_fw_get_max_memory not located in dynamic link library mkl_core.dll"
can please tell how resolve issue
Comments
Post a Comment