Home > Back-end >  Python3 ModuleNotFoundError: No module named 'drf_yasg'
Python3 ModuleNotFoundError: No module named 'drf_yasg'

Time:10-29

I found and error when i execute python3 manage.py runserver
line 37, in from drf_yasg.utils import swagger_auto_schema ModuleNotFoundError: No module named 'drf_yasg'

CodePudding user response:

Your django need drf yasng module but they didn't find any package.

For python3

pip3 install drf_yasg -U 


OR



pip3 install drf_yasg
  • Related