python - How can i use matplotlib on Anaconda? (Win 7 x64) -
i'm using anaconda on windows 7 64 bits i'm unable use external package (numpy, matplotlib,scipy). @ first when tried load code:
import matplotlib.pyplot plt plt.plot([1,2,3,4]) plt.ylabel('some numbers') plt.show()
i got dll error. then, downloaded , installed manually 64 bits packages here: http://www.lfd.uci.edu/~gohlke/pythonlibs/ when ran code message appeared: "apparently core died unexpectedly. use 'restart core' continue using terminal."
i appreciate if can me problem because have projects , i'm wasting time. thank in advance.
you should try run installation without mkl optimizations.
conda remove mkl mkl-service conda install nomkl numpy scipy scikit-learn numexpr
edit:
your problem seems installed packages website , not anaconda channels. clean current environment packages (or create new one) , execute:
conda install numpy matplotlib
Comments
Post a Comment