Home > database >  i run command django-admin startproject dr it shows zsh: command not found: django-admin?
i run command django-admin startproject dr it shows zsh: command not found: django-admin?

Time:12-22

i run command django-admin startproject dr it show zsh: command not found: django-adminenter image description here

How to solve this problem ? i also unintall django and reinstall and update pip

'/Library/Frameworks/Python.framework/Versions/3.9/bin/python3.9 -m pip install --upgrade pip'

CodePudding user response:

According to Django docs you can try this alternative command:

 python -m django startproject dr
  • Related