ERROR: No matching distribution found for mlxtend

mlxtend的安装
执行
from mlxtend.classifier import EnsembleVoteClassifier
报错,提示mlxtend模块未找到,于是安装mlxtend.
最常用的
pip install mlxtend -i https://pypi.tuna.tsinghua.edu.cn/simple
结果报错如下:
ERROR: Could not find a version that satisfies the requirement mlxtend
ERROR: No matching distribution found for mlxtend
ERROR: No matching distribution found for mlxtend_第1张图片

所以先下载whl文件到本地,再安装。
下载网址 https://pypi.org/project/mlxtend/#files
ERROR: No matching distribution found for mlxtend_第2张图片
保存至本地,
在这里插入图片描述
再用pip install+绝对路径 在这里插入图片描述
即可。

你可能感兴趣的:(ERROR: No matching distribution found for mlxtend)