其他分享
首页 > 其他分享> > AttributeError: module ‘community‘ has no attribute ‘best_partition‘ 问题的解决

AttributeError: module ‘community‘ has no attribute ‘best_partition‘ 问题的解决

作者:互联网

在使用社区检测算法louvain时,遇到一个错误,在使用community时遇到了如下错误:

AttributeError: module ‘community’ has no attribute 'best_partition' 

经过查找,找到如下解决办法
直接将GitHub中的包文件下载到python库中,下载路径为:https://github.com/taynaud/python-louvain/archive/master.zip
解压后在python-louvain-master所在的目录打开cmd,用下面的命令安装

python setup.py install

安装完毕后,再在jupyter notebook中运行代码时,已经没有问题了

标签:no,python,attribute,partition,community,louvain,best
来源: https://blog.csdn.net/weixin_44809488/article/details/118972455