这是我在尝试安装PyCluster时遇到的错误。我在spyder IDE和Windows上将python 2.7与anaconda一起使用。

下载/解压缩PyCluster

获取页面http://pypi.python.org/simple/PyCluster
用于搜索PyCluster版本的URL:
* httpss://pypi.python.org/simple/PyCluster/
获取页面httpss://pypi.python.org/simple/PyCluster/
分析来自页面httpss://pypi.python.org/simple/pycluster/的链接
找不到符合要求的下载PyCluster

找不到PyCluster的发行版

异常信息:
追溯(最近一次通话):
  主目录中的第107行“ C:\ Users \ anankuma \ AppData \ Local \ Continuum \ Anaconda \ lib \ site-packages \ pip-1.2.1-py2.7.egg \ pip \ basecommand.py”
    状态= self.run(选项,参数)
  运行中的文件“ C:\ Users \ anankuma \ AppData \ Local \ Continuum \ Anaconda \ lib \ site-packages \ pip-1.2.1-py2.7.egg \ pip \ commands \ install.py”,行256
    require_set.prepare_files(查找程序,force_root_egg_info = self.bundle,bundle = self.bundle)
  在prepare_files中,文件“ C:\ Users \ anankuma \ AppData \ Local \ Continuum \ Anaconda \ lib \ site-packages \ pip-1.2.1-py2.7.egg \ pip \ req.py”,行1011
    url = finder.find_requirement(req_to_install,upgrade = self.upgrade)
  在find_requirement中的第157行中,文件“ C:\ Users \ anankuma \ AppData \ Local \ Continuum \ Anaconda \ lib \ site-packages \ pip-1.2.1-py2.7.egg \ pip \ index.py”
    提高DistributionNotFound('%s的%req根本找不到分配)
DistributionNotFound:完全找不到PyCluster的分布


请提出解决方法。谢谢

最佳答案

here is该软件包没有源或二进制文件可供下载。

具有相似名称的模块(pyclustering)。

Python软件包索引(PYPI)是Python编程语言的软件存储库。

一个人可以手动下载软件包,也可以使用pip install

一个人也可以上传二进制和源程序包。

例如,this包具有源和一些二进制文件

Python Wheels和Python Eggs易于安装,通常在Windows上使用。

但是,可以使用直接从PYPI下载的MS Windows安装程序文件来完成手动安装。

关于python - PyCluster无法安装软件包,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38323412/

10-13 09:35