在使用 networkx
绘制有向图时,出现问题
AttributeError: module ‘matplotlib.pyplot’ has no attribute ‘ishold’
问题原因:
networkx
、matplotlib
版本不匹配 或者 两者安装顺序不正确导致的。
解决方法:
networkx
、matplotlib
pip uninstall XXX
matplotlib
pip install matplotlib
或
python3 -m pip install matplotlib
networkx
pip install networkx
或
python3 -m pip install networkx