我最近开始看夏娃。
我已经阅读了夏娃install guide并成功导入了它。
然后,我尝试了quick start guide,并对settings.py进行了一些更改。当我尝试运行run.py时,它给了我这个错误:
Traceback (most recent call last): File "run.py", line 1, in
<module> from eve import Eve ImportError: No module named eve
这是我的run.py代码:
from eve import Eve
app = Eve()
if __name__ == '__main__':
app.run()
这是我的settings.py
代码MONGO_HOST = 'localhost'
MONGO_PORT = 27017
MONGO_DBNAME = 'clownsighting'
RESOURCE_METHODS = ['GET', 'POST', 'DELETE']
ITEM_METHODS = ['GET', 'PATCH', 'PUT', 'DELETE']
schema = {
'scarinesslevel' : {'type' : 'string'},
'date' : {'type' : 'date'},
'address' : { 'type' : 'string' },
'city' : {'type' : 'string'},
'state' : {'type' : 'string'},
'country' : {'type' : 'string'},
'continent' : {'type' : 'string'}
}
sightings = {
'additional_lookup' : {
'url' : 'regex("[\w]+")',
'field' : 'date'
},
'schema' : schema
}
DOMAIN = {'sightings': sightings,}
这两个文件位于同一目录中,如果有帮助的话。
答案 0 :(得分:1)
我明白了。我没有运行命令
python run.py
在虚拟环境中。我现在有了它的确有效。
答案 1 :(得分:0)
看起来没有安装Eve(或者你没有安装在正确的虚拟环境中)。 @Component({
selector: 'registration',
templateUrl: 'registration.html'
})
将告诉您当前安装了哪些模块。如果未列出Eve,请尝试pip freeze
。