## 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]