我目前正在尝试重新配置我的数据库以使用 Neo4j 而不是 Postgres,并且我在配置方面遇到了问题。
我已经将neo4j
宝石添加到我的宝石文件中以及neo4j-core
,neo4j-ruby-driver
,neo4j-rake_tasks
。 我尝试运行rake neo4j:install[community-latest]
来生成 Neo4j 实例,但它抛出了我这个 –zsh: no matches found: neo4j:install[community-latest]
在列出所有耙子任务后,尽管每个在线资源都证明这是生成数据库的方式,但这个耙子任务似乎不存在。 我目前在轨道版本6.1.3.2
和Ruby版本2.6.6
上运行
这些是我一直在使用的一些资源。
- https://neo4jrb.readthedocs.io/en/v10.0.1/Setup.html
- https://diatomenterprises.com/using-neo4j-with-ruby-on-rails/
提前非常感谢
这是 zsh shell 误解命令行中的括号的问题。
使用单引号转义参数。例:
rake 'neo4j:install[community-latest,development]'