gpt4 book ai didi

python - 类型错误 : use() got an unexpected keyword argument 'warn' when importing matplotlib

转载 作者:行者123 更新时间:2023-12-03 15:48:10 24 4
gpt4 key购买 nike

我正在尝试学习 R markdown/notebook 来实现 R 和 Python 的代码块。我可以按照合理的标准使用 R,但我是 Python 新手。我已将 R markdown 下载到 R studio 并按照提示下载 miniconda 并这样做了。
我想制作一个基本情节,看看它是否有效。
我单击“插入新的 Python block ”
然后将以下代码复制并粘贴到“Python block ”中,该代码在使用 Spyder 环境的 Python 中运行良好。

import matplotlib.pyplot as plt 
x = [2, 4, 6, 8, 10, 12]
y = [1, 3, 5, 6, 9, 15]
plt.plot(x, y)
plt.show()
返回以下错误:
Error in py_call_impl(callable, dots$args, dots$keywords) : 
TypeError: use() got an unexpected keyword argument 'warn'
我在 r block 中使用以下内容安装了 matplotlib:
library(reticulate)
py_install("matplotlib")
我尝试将这个 block 粘贴到一个 Python block 和一个 R block 中:
{r,engine='python'}
但无济于事。我看不到任何人有相同的错误或指定如何从 Python 导入的指南,这一切似乎都表明这些 block 直接开箱即用。如果我遗漏了一些明显的东西,我深表歉意。我确保所有其他版本的 Python 都已卸载。任何建议都将不胜感激,因为我有一天希望能够在这个东西中集成 Python、R 和 bash 脚本!
session 信息 :
Windows 10, R version 3.6.3 (2020-02-29), R Studio Version 1.2.5001. R version 3.6.3 (2020-02-29)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 10 x64 (build 18362)

Matrix products: default

locale:
[1] LC_COLLATE=English_United Kingdom.1252
[2] LC_CTYPE=English_United Kingdom.1252
[3] LC_MONETARY=English_United Kingdom.1252
[4] LC_NUMERIC=C
[5] LC_TIME=English_United Kingdom.1252

attached base packages:
[1] stats graphics grDevices utils datasets methods base

other attached packages:
[1] knitr_1.28 reticulate_1.16

loaded via a namespace (and not attached):
[1] compiler_3.6.3 Matrix_1.2-18 tools_3.6.3 rappdirs_0.3.1
[5] Rcpp_1.0.4.6 grid_3.6.3 jsonlite_1.6.1 xfun_0.9
[9] lattice_0.20-38

最佳答案

使用 reticulate 和 matplotlib 时我遇到了完全相同的错误。
我通过降级我的 matplotlib 版本来修复它,例如:

pip install matplotlib==3.2  
您可以通过运行 pip freeze 来验证 matplotlib 是否已降级。并找到 matplotlib 条目。它应该看起来像 matplotlib==3.2.0 . (也许尝试从 r 执行此操作,因此您可以确定您正在使用正确的 python 安装)。
我认为这个问题是由于在最近版本的 matplotlib 中从 matplotlib 函数中删除了 'warn' 参数引起的,并且 R/reticulate 假定该函数的行为较旧。

关于python - 类型错误 : use() got an unexpected keyword argument 'warn' when importing matplotlib,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63036394/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com