AttributeError: module 'networkx' has no attribute 'from_numpy_matrix'
时间: 2023-06-22 13:35:36 浏览: 820
求解报错:AttributeError:module ‘os’ has no attribute ‘exit’
这个错误通常是因为 `networkx` 版本太低,不支持 `from_numpy_matrix` 方法。你可以尝试更新 `networkx` 到最新版本,方法如下:
```
pip install --upgrade networkx
```
如果你已经安装了最新版本的 `networkx`,还是出现这个错误,你可以尝试使用 `to_networkx_graph` 方法替代 `from_numpy_matrix`:
```
G = nx.to_networkx_graph(scipy_matrix)
```
这应该可以解决你遇到的问题。
阅读全文