what is difference b/w django-admin startapp vs python manage.py startapp?

646 Views Asked by At
  1. both does the same job creating the app in projects
  2. what the different between these two in Django?
1

There are 1 best solutions below

0
On

There is no difference in the behaviour. django-admin comes from your installed packages while manage.py will be called from your application.