I have a smoothly running python project where I use the line
from py2neo import Node, Relationship, Graph, authenticate, cypher
However, when I moved the files to another machine and tried to run them there, it turned out that 'authenticate' couldn't be imported. And indeed, it doesn't show up under dir(py2neo) in terminal mode.
Python 2.7.13 on both machines. How can that be possible?