Neo4j电影示例应用程序-Python版本
首先,使用设置,这样我们就不会破坏您计算机上拥有的任何其他Python东西。 安装完之后,让我们为我们的应用程序设置一个环境:
$ virtualenv cypher-app
New python executable in cypher-app/bin/python
Installing setuptools, pip...done.
$ source cypher-app/bin/activate
下一步是安装应用程序的依赖项:
(cypher-app)$ pip install -r requirements.txt
...
Successfully installed py2neo
Cleaning up...
最后,让我们启动一个Bottle Web服务器:
(cypher-app)$ python example
2021-10-26 15:37:18
52KB
Python
1