Matplotlib给出了错误

时间:2015-08-10 17:59:26

标签: python numpy matplotlib

我正在运行此处给出的示例代码https://github.com/matplotlib/matplotlib/blob/master/examples/pie_and_polar_charts/pie_demo_features.py 在我的机器上并收到错误说“pie()得到一个意外的关键字参数'center'” 我的python版本是2.7.10 32位。我已经安装了numpy,scipy和matplotlib。 我正在使用numpy和scipy http://www.lfd.uci.edu/~gohlke/pythonlibs/#matplotlib,而matplotlib是直接使用pip install命令安装的。

1 个答案:

答案 0 :(得分:2)

你的matplotlib版本是什么? (找到的最佳方法是在python REPL / prompt中打印matplotlib.__version__

center=(,)参数在1.5中引入(开发版,尚未稳定)。

请参阅:http://matplotlib.org/devdocs/api/pyplot_api.html#matplotlib.pyplot.pie

最新的稳定版本(1.4.3 / 1.4.2)不支持此论点。

编辑:据我所知,matplotlib 1.5目前无法通过pip获得。您必须从git(https://github.com/matplotlib/matplotlib.git)查看并自行构建。