Jupyter中AttributeError: module ‘sklearn.tree‘ has no attribute ‘plot_tree‘的解决方法
Posted 夏木皆阳448
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Jupyter中AttributeError: module ‘sklearn.tree‘ has no attribute ‘plot_tree‘的解决方法相关的知识,希望对你有一定的参考价值。
问题原因: scikit-learn 的版本过低
解决办法:(这是本人今天2022/5/25遇到的问题并解决的方法,对其他人不知道有没有效)
1、以管理员身份运行Anaconda Prompt
2、输入pip install --upgrade scikit-learn
pip install --upgrade scikit-learn
3、 出现错误ERROR: Could not install packages due to an OSError: [WinError 5] 拒绝访问。执行以下命令:(两行代码直接复制粘贴到小黑框)
python -m ensurepip
python -m pip install --upgrade pip
4、更新完成,关闭Jupyter小黑框,重新启动,就可以画决策树了。
以上是关于Jupyter中AttributeError: module ‘sklearn.tree‘ has no attribute ‘plot_tree‘的解决方法的主要内容,如果未能解决你的问题,请参考以下文章
无法在 Jupyter Notebook 中导入 TensorFlow
““ AttributeError”,使用python进行网络抓取
在 jupyter notebook 中屏蔽 RCNN 演示代码错误
AttributeError:模块“tensorflow._api.v1.config”没有属性“run_functions_eagerly”