sklearn. ImportError: DLL load failed
sklearn. ImportError: DLL load failed
这条线
from sklearn.model_selection import train_test_split
我收到错误:
ImportError: DLL load failed while importing _openmp_helpers: The
specified module could not be found.
如何解决?
Python 3.8(32 位)在 Windows 7 x64 上。
我有同样的问题,降级到低于 0.22 的版本解决了同样的问题
请将sklearn的版本降到0.21以下
安装以前版本的 sklearn
为我解决了这个问题。
这样做:
pip install -U scikit-learn==0.21rc2
只是想让你知道,如果你想将它与 Python 3.5 一起使用或从不使用它:
Warning
Scikit-learn 0.20 was the last version to support Python 2.7 and Python 3.4. Scikit-learn now requires Python 3.5 or newer.
这条线
from sklearn.model_selection import train_test_split
我收到错误:
ImportError: DLL load failed while importing _openmp_helpers: The specified module could not be found.
如何解决?
Python 3.8(32 位)在 Windows 7 x64 上。
我有同样的问题,降级到低于 0.22 的版本解决了同样的问题 请将sklearn的版本降到0.21以下
安装以前版本的 sklearn
为我解决了这个问题。
这样做:
pip install -U scikit-learn==0.21rc2
只是想让你知道,如果你想将它与 Python 3.5 一起使用或从不使用它:
Warning
Scikit-learn 0.20 was the last version to support Python 2.7 and Python 3.4. Scikit-learn now requires Python 3.5 or newer.