django使用captcha报错:No module named 'captcha'

在 django 虚拟环境安装了 captcha

pip install django-simple-captcha

在 settings.py 里进行了注册:
django使用captcha报错:No module named 'captcha'
在 urls.py 里也增加了对应网址:
django使用captcha报错:No module named 'captcha'
在 models.py 里导入和在表单中使用都未报错:
django使用captcha报错:No module named 'captcha'

class UserForm(forms.Form):
    username = forms.CharField(label="用户名", max_length=32, widget=forms.TextInput(attrs={'class': 'form-control'}))
    password = forms.CharField(label="密码", max_length=64, widget=forms.PasswordInput(attrs={'class': 'form-control'}))
    captcha = CaptchaField(label='验证码')

在 html 文件中添加验证:
django使用captcha报错:No module named 'captcha'
做完这些进行运行时,代码报错:
ModuleNotFoundError: No module named ‘captcha’