当前位置: 首页 > 工具软件 > no-captcha > 使用案例 >

django开发中遇到No module named 'captcha的问题解决方法

席安康
2023-12-01

在Django开发中遇到如下问题

    from captcha.fields import CaptchaField
ModuleNotFoundError: No module named 'captcha.fields'

解决方法:

安装django-simple-captcha

pip install django-simple-captcha

在开发中遇到以下错误

HINT: Add or change a related_name argument to the definition for 'User.user_permissions' or 'UserProfile.user_permissions'.

解决方案:在settings.py中添加:

AUTH_USER_MODEL = 'Users.UserProfile'
 类似资料: