pip install Scikit-learn==0.20.4
在机器学习中,有时需要保存或加载模型,就会引入from sklearn.externals import joblib
。但是大多数参考的文章时间太久,而sklearn.externals.joblib在0.21中已弃用,在0.23中被删除。故因为scikit-learn版本问题,运行时会出现报错:from sklearn.externals import joblib ImportError: cannot import name ‘joblib‘
pip uninstall joblib scikit-leran sklearn
pip install Scikit-learn==0.20.4
这是Scikit-learn的可用文档(Scikit-learn版本)
原文:https://blog.csdn.net/aclplr/article/details/107183926
from sklearn.externals import joblib ImportError: cannot import name ‘joblib‘
原文:https://www.cnblogs.com/isme-zjh/p/13273851.html