ImportError: cannot import name ‘joblib’ from ‘sklearn.externals’

You should directly use

import joblib

instead of

from sklearn.externals import joblib

Leave a Comment