13 lines
220 B
Puppet
13 lines
220 B
Puppet
# Install python bindings for igraph.
|
|
#
|
|
class igraph::python {
|
|
|
|
case $operatingsystem {
|
|
ubuntu: {
|
|
package { "python-igraph":
|
|
ensure => installed,
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|