I'm working on a website development project. I opened the terminal and typed
import django
django.VERSION
I didn't faced any error. But then, to start my project,when I typed
django-admin startproject trialsite
I received a message, like the below:
Cannot find installed version of python-django or python3-django
With the help of
pip install Django==1.8.2
I installed Django in my system, and using apt-get, I installed the django-admin package before using it. I don't know what is the issue, can someone please tell me.