-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
When using the functions from booleannet.network I get an error that networkx
is not present. However this is false as I do have networkx properly installed.
I found the source of the problem: in booleannet's 'network.py' file it uses
-----------------
from networkx import component
-----------------
However, networkx has no "component" name, but it does have "components". I am
running the latest version of networkx (as of late October), so perhaps they
have changed it recently. Anyway, the first is simple
-----------------
from networkx import components as component
-----------------
and then I reinstalled booleannet to python and everything worked fine.
Jason Wittenbach
PhD Candidate
Department of Physics
Penn State Unviersity
juw217@psu.edu
Original issue reported on code.google.com by Jason.Wi...@gmail.com on 11 Nov 2011 at 6:53
Reactions are currently unavailable