In this tutorial, we’ll setup the Django Framework Environment. We’ll install Python 3, Pip 3 and virtualenv, for providing necessary tools for your Django Web Application.
- Create a folder and put all the files inside it.
- Create a virtual environtment -
virtualenv env
- Activate VirtualENV -
. env/bin/activate
- Run Requirements.txt -
pip3 install -r requirements.txt
- Run the Application -
python3 manage.py runserver
- Go to - http://localhost:8000/