Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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]
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #command #install #django
ADD COMMENT
Topic
Name
7+6 =