igraph

Analyze networks and graphs with statistics, algorithms, and visualization.

brewmacoslinux
Try with needOr install directly
Source

About

Network analysis package

Examples

install igraph library for use in python projects$ brew install igraph && python3 -c 'import igraph; print(igraph.__version__)'
build and compile c programs that use igraph$ gcc myprogram.c -ligraph -o myprogram
check igraph version and installation details$ pkg-config --modversion igraph
link igraph to r statistical analysis projects$ R -e 'install.packages("igraph")'
access igraph library headers for c development$ pkg-config --cflags --libs igraph