Answers for "django-admin' is not recognized as an internal or external command, operable program or batch file."

4

'django-admin' is not recognized as an internal or external command,

python -m venv venv

venv\Scripts\activate

pip install django

django-admin startproject mysite
Posted by: Guest on June-22-2021
1

'django' is not recognized as an internal or external command

//uninstall and installing django library should work in most cases..
pip uninstall django
//wait for django to uninstall and then install it by using following command
pip install django
Posted by: Guest on June-04-2021

Code answers related to "django-admin' is not recognized as an internal or external command, operable program or batch file."

Browse Popular Code Answers by Language