Anaconda3使用matplotlib画图报错问题的解决方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Anaconda3使用matplotlib画图报错问题的解决方法相关的知识,希望对你有一定的参考价值。
在Anaconda3中使用matplotlib画图报错:
ModuleNotFoundError: No module named ‘PyQt4‘
试了网上的几种方法都不奏效,最后在http://www.lfd.uci.edu/~gohlke/pythonlibs/#pyqt4 上下载和Python版本对应PyQt4的.whl文件,然后用pip命令安装。
此刻再执行程序不报上述错误,在执行到plt.figure()命令时又报:TypeError:‘figure‘ is an unkown keyword argument
此时需要在源代码中增加两句,
# 新增语句
import matplotlib
matplotlib.use(‘TkAgg‘)
# 原语句
import matplotlib.pyplot as plt
至此,代码完全正常执行,可以正常显示图片。
以上是关于Anaconda3使用matplotlib画图报错问题的解决方法的主要内容,如果未能解决你的问题,请参考以下文章
matplotlib scatter画图报错:TypeError: ufunc ‘sqrt‘ not supported for the input types...rule ‘‘safe‘‘
matplotlib画图报错This figure includes Axes that are not compatible with tight_layout, so results might
matplotlib提示RuntimeWarning: Glyph 20998 missing from current font