include-path

module not found when using include in django

module not found when using include in django Question: I’m trying to use include in my app following the tutorial here – https://www.w3schools.com/django/django_views.php it seems that when I run the server using this configuration- urlpatterns = [path(‘members/’, include(‘mimi.urls’)), path(‘admin/’, admin.site.urls),] I get ModuleNotFoundError: No module named ‘mimi’. I’ve attached a screenshot of my Pycharm project …

Total answers: 3