ModuleNotFoundError Traceback (most recent call last) <ipython-input-1-7071f327cf86> in <module>() 10 from sklearn.tree import DecisionTreeClassifier 11 # 生成图表 ---> 12 import pydotplus ModuleNotFoundError: No module named 'pydotplus'
时间: 2023-06-17 11:08:12 浏览: 220
import requests ModuleNotFoundError No module named ‘requests’
这个错误提示表明你的Python环境中没有安装pydotplus模块。你可以尝试通过在命令行中运行以下命令来安装它:
```
pip install pydotplus
```
如果你使用的是Anaconda环境,可以尝试使用以下命令来安装:
```
conda install -c conda-forge pydotplus
```
安装完成后,你应该能够成功运行代码了。
阅读全文