3

我只是在尝试 neo4django自己的例子,即

from neo4django.db import models

class Person(models.NodeModel):
    name = models.StringProperty()
    age = models.IntegerProperty()

    friends = models.Relationship('self',rel_type='friends_with')

但是,运行时python manage.py syncdb出现以下错误:

AttributeError: type object 'Model' has no attribute '__metaclass__'

有任何想法吗?

(我会在 Stackoverflow 中使用标签“neo4django”,但它还不允许我创建新标签)。

4

1 回答 1

2

请参阅https://github.com/scholrly/neo4django/issues/143 - 在下一个版本之前我们不会支持 Django 1.5+!

于 2013-05-25T20:39:54.330 回答