Closed Liamhanninen closed 5 years ago
In project_sample/urls.py:
project_sample/urls.py
url(r'^schedule/', include('schedule.urls')),
Caused: ModuleNotFoundError: No module named 'schedule.urls'
ModuleNotFoundError: No module named 'schedule.urls'
I don't see the schedule app. Am I missing something?
You need to install the schedule dep, it should be installed with pip install -r requirements.txt. Check here the project https://github.com/llazzaro/django-scheduler
In
project_sample/urls.py
:url(r'^schedule/', include('schedule.urls')),
Caused:
ModuleNotFoundError: No module named 'schedule.urls'
I don't see the schedule app. Am I missing something?