我是Python和编程的新手。我试图在我的程序中“导入matplotlib. pyplotas plt”,但Python给我以下错误:
Traceback(最近一次调用最后一次):File"img_proc_canny_edge_detection.py",第3行,在导入matplotlib. pyplot作为plt File"/用户/alireza/.Virtualenvs/cv/lib/python2.7/site-package/matplotlib/pyplot.py",第115行,在_backend_mod,new_figure_manager,draw_if_interactive,_show=
当我从我的程序中注释掉“import matplotlib. pygraph as plt”行时,它工作得很好。
注意:我已经安装了matplotlib
使用以下代码行,它应该可以在虚拟环境中正常工作,没有任何问题
import matplotlib
matplotlib.use(‘TkAgg’)
import matplotlib.pyplot as plt