Solution:
STEP 1: You need to setup a virtual environment using
pip install virtualenv # got install successfully
STEP 2: You create a virtual name
mkvirtualenv test
STEP 3: Get your own environment
uninstall using:
pip uninstall virtualenvwrapper-win
pip uninstall virtualenv
install using:
pip install virtualenvwrapper-win
STEP 4: Go to where you want create django app on that folder.
After that, run this command on command prompt
python -m virtualenv .
C:\Users\gshiv\Desktop\django>python -m virtualenv .)
where django is the my folder i want run virtualenv and .(dot) indicates virtualenv install all it's folder in django folder otherwise you can use other folder name instead .(dot) this time virtulenv creates a folder in main folder(django) .
after running this command: run .\scripts\activate
now you can see this type of line on cmd-prompt (django) C:\Users\gshiv\Desktop\django>
Main folder name before the source path. now you can install any modules for your project that belongs to that main folder only.