$ pip install virtualenv
$ virtualenv env_name
To run the virtual environment
$ env_name\Scripts\activate
Next install all the dependencies and then run manage.py file as shown
$ pip install -r requirements.txt
$ python manage.py runserver
This will run the django app on local server