Hi Team,
I was doing some hands-on with Neo4j + Cypher + Python, and was trying to convert the result into Pandas DataFrame, but getting below error.
Code used :
results = %cypher http://XXX:XXXX@localhost:7474/db/data MATCH (person:Person)-[:LIKES]->(drink:Drink) \
RETURN person.name AS name, drink.name AS drink
df = results.get_dataframe()
Error : ImportError: Try installing Pandas first.
I have install the Pandas and able to use the pandas using import statement and was also able to perform other operations on pandas, but somehow when using the method get_dataframe(), it is failing.
Help help in identifying the issue, or suggest.