from sklearn.externals.six import StringIO
from IPython.display import Image
from sklearn.tree import export_graphviz
import pydotplus
ModuleNotFoundError:没有名为“ pydotplus”的模块
最佳答案
由于您使用的是conda,因此应使用conda安装程序,而不要使用pip安装程序。
根据documentation:
从conda-forge频道安装pydotplus可以通过以下方式将conda-forge添加到您的频道中来实现:
conda config --add channels conda-forge
启用conda-forge频道后,可以使用以下方法安装pydotplus:
conda install pydotplus
关于python - 即使在pip安装pydotplus之后,它仍然说没有名为“pydotplus”的模块应该怎么做?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55463363/