Is it necessary to install separate django for each project? if yes then why? and if no then when i check for django version when virtualenv is not activated their is no error as below
E:\web\python\django_1>python -m django --version
2.1.4
And when i activate virtual env i get error as below
(django_1-Gx7XQ45n) E:\web\python\django_1>python -m django --version
C:\Users\usr_name\.virtualenvs\django_1-Gx7XQ45n\Scripts\python.exe: No module named django
Why this is happening?