错误:找不到满足要求的版本

问题描述 投票:0回答:1

我正在尝试在colab中安装python包ClusterEnsembles,但它总是给出错误:

!pip install ClusterEnsembles

和错误:

ERROR: Could not find a version that satisfies the requirement ClusterEnsembles (from versions: none)
ERROR: No matching distribution found for ClusterEnsembles

你能帮我吗?

python pip google-colaboratory pyinstaller packageinstaller
1个回答
0
投票

这是您要安装的模块吗? https://pypi.org/project/ensembleclustering/

它说尝试安装使用

pip install ensembleclustering

确保不存在与其他包的依赖问题。如果有的话你可以做类似的事情

`pip install -v "<name_of_module>==<version_number>"`

您也可以在这里查看可能的答案:找不到满足要求的版本

© www.soinside.com 2019 - 2024. All rights reserved.