Horje
django-admin command not found after pip3 install django 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]




Shell

Related
change folder permissions to public linux Code Example change folder permissions to public linux Code Example
adb kill server kali linux Code Example adb kill server kali linux Code Example
git add only c files Code Example git add only c files Code Example
TestStand hexadecimal chars Code Example TestStand hexadecimal chars Code Example
install openzeppelin Code Example install openzeppelin Code Example

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