【问题标题】:Conda install graph-tool failed on win-64Conda 安装图形工具在 win-64 上失败
【发布时间】:2026-01-22 20:25:01
【问题描述】:

我尝试通过 anaconda 为 python 2.7 安装图形工具:

conda install -c kristanarmstrong graph-tool

我收到以下错误:

UnsatisfiableError: The following specifications were found to be in conflict:
- graph-tool
Use "conda info <package>" to see the dependencies for each package.

我也试过: conda install -c jithinpr2 graph-tool conda install graph-tool conda remove graph-tool This 效果不佳。 以前没有安装过这个包。

有什么想法我的方法有什么问题吗?

【问题讨论】:

  • 也许可以按照这个来安装它link

标签: python anaconda conda graph-tool


【解决方案1】:

首先,我要对您的代码来源更加谨慎。除非您认识/信任该用户,否则从某人的个人渠道盲目安装可能会有风险。

kristanarmstrong 仅托管 Python 3.4 版本。 jithinpr2 是 Python 2.7 版本,但它也很旧,这可能是问题所在。否则,事实是 没有可靠的 Conda 频道为 win-64 托管 graph-tool。有an open thread on the repo讨论改进安装。

我认为您在这里真正拥有的唯一选择是关注the Official Installation Instructions。它看起来很复杂,所以the Docker option 看起来可能是您最快的前进路径,如果您只需要让它运行并且不太关心 Conda 安装。

理想的解决方案是让某人为 Conda Forge 上的工具构建原料。

【讨论】: