Horje
command not found: django-admin Code Example
django-admin command not found
python -m django startproject monnify
django-admin command not found
python3 -m django startproject {project name}
django-admin command not found after pip3 install django
## You probably installed Django as a user, try installing it as sudo instead.
### To fix your issue, run the commands below:

pip3 uninstall django  # this will uninstall the user account version

sudo pip3 install django  # this will install using sudo

## now try starting a project again as per usual, it will work
django-admin startproject [project-name]
command not found: django-admin
django-admin should be on your system path if you installed Django via pip. If it’s not in your path, ensure you have your virtual environment activated and you can try running the equivalent command python -m django.




Shell

Related
redirect output to file and next pipeline Code Example redirect output to file and next pipeline Code Example
how to make a log of my ternminal history Code Example how to make a log of my ternminal history Code Example
linux convert multiple images Code Example linux convert multiple images Code Example
how to deploy project on github Code Example how to deploy project on github Code Example
find string in  directory files Code Example find string in directory files Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10