Closed. This question needs to be more focused。它当前不接受答案。












想改善这个问题吗?更新问题,使其仅关注editing this post一个问题。

2年前关闭。



Improve this question




运行django服务器时出现错误。我通过pip安装了opencv-python和opencv-contrib-python。仍然出现相同的错误。有什么建议么?

正在执行系统检查...

启动的线程中未处理的异常
追溯(最近一次通话):
包装文件fn(* args,** kwargs)中的文件“/home/auxouser/.local/lib/python2.7/site-packages/django/utils/autoreload.py”,第228行
在inner_run中的文件“/home/auxouser/.local/lib/python2.7/site-packages/django/core/management/commands/runserver.py”中,第124行
self.check(display_num_errors = True)
在检查include_deployment_checks = include_deployment_checks中的文件“/home/auxouser/.local/lib/python2.7/site-packages/django/core/management/base.py”中,行359,
_run_checks中的文件“/home/auxouser/.local/lib/python2.7/site-packages/django/core/management/base.py”第346行返回check.run_checks(** kwargs)
在run_checks new_errors = check(app_configs = app_configs)中的文件“/home/auxouser/.local/lib/python2.7/site-packages/django/core/checks/registry.py”,第81行
文件“/home/auxouser/.local/lib/python2.7/site-packages/django/core/checks/urls.py”,第16行,在check_url_config中返回check_resolver(resolver)
在check_resolver中,文件“/home/auxouser/.local/lib/python2.7/site-packages/django/core/checks/urls.py”第26行返回check_method()
文件“/home/auxouser/.local/lib/python2.7/site-packages/django/urls/resolvers.py”,第254行,以检查self.url_patterns中的模式:
在__get__res = instance .__ dict __ [self.name] = self.func(instance)中的文件“/home/auxouser/.local/lib/python2.7/site-packages/django/utils/functional.py”,第35行
文件“/home/auxouser/.local/lib/python2.7/site-packages/django/urls/resolvers.py”,第405行,以url_patterns模式= getattr(self.urlconf_module,“urlpatterns”,self.urlconf_module)
在__get__ res = instance .__ dict __ [self.name] = self.func(instance)中的文件“/home/auxouser/.local/lib/python2.7/site-packages/django/utils/functional.py”,第35行)
urlconf_module中的文件“/home/auxouser/.local/lib/python2.7/site-packages/django/urls/resolvers.py”,行398返回import_module(self.urlconf_name)
import_module中的文件“/usr/lib/python2.7/importlib/__init__.py”,第37行
__import __(名称)
在第3行中输入文件“/home/auxouser/Auxo/projects/training-ds/Day-9/Face_Recognition/Face_Recognition/urls.py”
从MyAPP导入 View
在第12行的“/home/auxouser/Auxo/projects/training-ds/Day-9/Face_Recognition/MyAPP/views.py”文件中
识别器= cv2.face.LBPHFaceRecognizer_create()
AttributeError:“模块”对象没有属性“面”

最佳答案

您的项目中可能有一个名为cv.py的模块(在本例中为cv2.py)-这意味着import cv2会导入您自己的模块,而不是opencv,并且cv2.face将失败。

删除您的.py文件和所生成的.pyc,导入将再次起作用。

07-28 08:56