ImportError: cannot import name 'login' from 'django.contrib.auth.views'

Error message:

  File "D:\code\python_work\learning_log\users\urls.py", line 4, in <module>
    from django.contrib.auth.views import login
ImportError: cannot import name 'login' from 'django.contrib.auth.views' (D:\code\python_work\learning_log\ll_env\lib\site-packages\django\contrib\auth\views.py)

 

Modification method:

from django.contrib.auth.views import login replaced

from django.contrib.auth import login

Restart Service

Guess you like

Origin www.cnblogs.com/cwy6688/p/12049999.html