Django 简单验证码“无模块命名字段”错误
您好,我正在尝试将 Django 简单验证码实现到我的应用程序中,但是当我尝试从 view.py 导入“from captcha.fields import CaptchaField”时,出现错误“没有名为字段的模块”。但我可以在 django shell 终端中导入它。我还缺少什么
Hi I am trying to implement Django simple capcha into my app but when i try to import from view.py "from captcha.fields import CaptchaField" i get an error "No module named fields". but i am able to import this in the django shell terminal. What else am i missing
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否将
captcha
添加到了 settings.py 中的INSTALLED_APPS
中?如果是,您是否安装了它?安装在哪里?它是否在您的 Python 路径中?
Did you add
captcha
to theINSTALLED_APPS
in your settings.py?If so, did you install it, where did you install it, and is it on your Python path?
我之前遇到过同样的问题,我安装了 django-simple-captcha。终于成功了
I encountered same problem before and I installed django-simple-captcha. It worked finally