Search code examples
pythonnetworkx

How to make community detection with networkx module works?


I am working with networkx library for graph optimization problems. However, when I try running the example on their documentation it says in my PyCharm IDE after executing the example:

Traceback (most recent call last):
  File "/home/PycharmProjects/testing_things.py", line 1, in <module>
    import community
ImportError: No module named community

Does anyone knows how to get rid of this error? I am using Python 2.7


Solution

  • It would seem that your python installation doesn't have community installed.

    You can install it by running:

    pip install python-louvain
    

    Cheers!