cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

angel_vergara
Node
since ‎03-18-2019
‎06-01-2022

User Statistics

  • 2 Posts
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

I have loaded data into the neo4j browser directly, through pycharm, and have no issues creating the graph or using cypher to create queries. However, I want to use de APOC library, and the installation guide sends you to the desktop app, and install...
I installed the py2neo (pip install py2neo) and the neo4j driver for python (pip install neo4j-driver) Then I wrote this simple code on pycharm: from py2neo import Graph form py2neo import Node graph=Graph() a=Node("Person", name="angel") graph.creat...