【发布时间】:2021-05-04 19:07:27
【问题描述】:
当我尝试在 IBM Cloud 上安装 python-graphviz 包作为我最后的课程 - ML with Python 的一部分时,我收到以下错误
错误:找不到满足 python-graphviz 要求的版本(来自版本:无) 错误:没有为 python-graphviz 找到匹配的分布
我使用的命令如下: !pip install python-graphviz
根据实验室说明,以下安装 pydotplus 和 python-graphviz 的命令不起作用。 #!conda install -c conda-forge pydotplus -y #!conda install -c conda-forge python-graphviz -y
总结一下, !pip install pydotplus ## 这是有效的。 #!conda install -c conda-forge pydotplus -y ## 这不起作用 !pip install python-graphviz ## 这不起作用 #!conda install -c conda-forge python-graphviz -y ## 这也不起作用。
请告诉我正确的指令集 - 无论是 PIP 还是 CONDA。
谢谢。 问候, 瓦桑S T
【问题讨论】: