试图通过跟踪一些滑雪板文档生成一些PDF的决策树,但是无法在我的机器上得到Pydot。有没有任何方法可以使用conda安装程序来安装pydot包?根据我看到的命令行错误,这可能是一个64位的问题。我使用binstar搜索找到包通道:
C:\binstar search -t conda 给出了详细查看包的建议
binstar show j14r/pydot然后告诉我
conda install --channel https://conda.binstar.org/j14r pydot但是,当我运行conda命令时,我会得到以下错误(对于列出的所有pydot包来说都是相同的错误):
Fetching package metadata: ...
Error: No Packages found in current win-64 channels matching: pydot
You can search for this package with
binstar search t conda pydot这让我回到了这一切的开始。有什么想法吗?谢谢大家。
发布于 2016-12-14 17:16:41
这可能有助于在Windows 10 64位上寻找Anaconda的人,环境: Windows 10 64位,Python 3.5.2,Anaconda 4.2.0 (64位)
发布于 2015-07-29 02:47:01
对于Windows8.1上的Anaconda3 x64安装,我也有同样的问题。
以下是我所做的:
1)安装了用于Windows的https://windows.github.com/
2)打开Git Shell (这是一个允许git命令的PowerShell会话)
3)使用以下命令从https://github.com/nlhepler/pydot安装pydot:
./pip install git+https://github.com/nlhepler/pydot.git4)您可以通过发出
conda list发布于 2017-04-06 20:01:46
新的64位安装程序pydot链接https://anaconda.org/rmg/pydot或
conda install -c rmg pydot
https://stackoverflow.com/questions/26349314
复制相似问题