文章目录 说明错误提示原因分析解决方法 说明 Macos安装APOC核心库 错误提示 There is no procedure with the name `apoc.generate.ba` registered for this database instance. Please ensure you've spelled the procedure name correctly and that the procedure is properly deployed. 原因分析 在 Neo4j 4.2 中,Neo4j Labs 的 APOC 库分为两部分:APOC 核心库和 APOC 扩展库,两者均由 Neo4j 社区支持。从 Neo4j 5 开始,APOC 核心库是一个受支持的项目。部分功能放在APOC拓展库。通过安装 APOC 扩展库来使用Generating Graphs。 解决方法 安装APOC 扩展库的方法和APOC核心库一样 打开APOC 扩展库地址,注意选择支持Neo4j 5版本的apoc拓展库。下载到本地 然后将APOC拓展jar包,放到plugins目录下 重启neo4j程序,即可正常使用 brew services stop neo4j # 停止 Neo4j 服务 brew services start neo4j # 启动 Neo4j 服务 brew services restart neo4j # 重启 Neo4j 服务