I'm on macOS, using another program needs to run python script contains networkx module. My networkx2.1 is installed using:
pip install networkx --user
The error raised is that:
File "/Users/myname/Library/Python/2.7/lib/python/site-packages/networkx/__init__.py", line 43, in <module>
import networkx as nx
ImportError
from networkx import release
cannot import name release
I've done some search on this error, and those seem working is by using the networkx of another version, or install/uninstall.
I've already tried uninstall and reinstall networkx of version 1.9, 1.5, 1.1, however this error continues.
Anyone also encounterd this issue?