1👍
The link that you have provided doesn’t work (404 error).
This "silk" error probably generated by django-silk
package. Guess that if this name doesn’t anything to you, the easiest solution for you would be removing it from dependencies (Pipfile
or requirements.txt
).
P.S. django-silk
package is a profiling tool for django.
1👍
Run the migrations for django-silk:
/manage.py makemigrations silk
Migrations for 'silk':
venv_3_9_10/lib/python3.9/site-packages/silk/migrations/0001_initial.py
- Create model Request
- Create model SQLQuery
- Create model Response
- Create model Profile
./manage.py migrate silk
- [Django]-Cannot import ASGI_APPLICATION module 'myproject.routing'
- [Django]-Why am I getting this Django custom command error: 'datetime.timezone' has no attribute 'now'
- [Django]-Nginx raising 403 Forbidden when accessing Staticfiles in Django app on Digital Ocean
- [Django]-Django User's DetailVew affects authenticated User
Source:stackexchange.com